* {
    margin: 0;
    padding: 0;
    font-family: Montserrat;
    /* border: 1px solid red; */
}

a {
    text-decoration: none;
    color: black;
    transition: 0.3s;
}

a:hover {
    opacity: 0.7;
}

section>div {
    width: 90%;
    margin: 0 auto;
    padding: 50px 20px;
}

@media screen and (max-width: 410px){
    section>div {
        padding: 50px 0px;
    }
}


/* NAVBAR */

.logo {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: white;
}

header {
    position: fixed;
    z-index: 2;
    width: 100%;
}

.header {
    transition: top 0.5s ease;
    transition: background-color 0.5s ease;
}

.scrolled {
    background: #35C0ED;
}

nav {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: space-around;
    align-items: center;
    /* height: 8vh; */
    height: 47px;
}

.nav-list {
    list-style: none;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
}

.nav-list li {
    margin-left: 32px;
}

.nav-list li a {
    text-transform: uppercase;
    color: white;
}

.mobile-menu {
    display: none;
    position: relative;
    width: 52px;
}

.mobile-menu div {
    width: 32px;
    height: 2px;
    background-color: black;
    margin: 8px;
    background-color: white;
    transition: .5s ease-in-out;
}

.hamburguer-active-1{
    transform: rotate(45deg);
    margin: 0px!important;
    position: absolute;
    margin-bottom: 10px;
}

.hamburguer-active-2{
    transform: rotate(135deg);
    margin: 0px!important;
    position: absolute;

}

.hamburguer-active-3{
    transform: rotate(45deg);
    margin: 0px!important;
    position: absolute;
}

@media screen and (max-width: 999px) {

    body {
        overflow-x: hidden;
    }

    .nav-list {
        position: absolute;
        /* top: 8vh; */
        top: 47px;
        right: 0;
        width: 50vw;
        height: calc(100vh - 47px);
        background-color: #35C0ED;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        transform: translateX(100%);
        transition: transform 0.3s ease-in;
        padding-bottom: 15%;
        box-sizing: border-box;
        /* z-index: 20; */
    }

    .nav-list li {
        margin-left: 0;
        opacity: 0;
    }

    .mobile-menu {
        display: block;
    }
}

.nav-list.active {
    transform: translateX(0);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* SLIDE */

.carousel {
    position: relative;
    height: 578px;
    width: 100%;
    background-color: #35C0ED;
}


.slides {
    height: 100%;
    width: 100%;
    position: relative;
    top: 0;
    background-color: #35C0ED;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;

    font-size: 3em;
    color: rgb(255, 58, 58);
    /*line-height: 400px;*/
    text-align: center;
    opacity: 0;
    transition: opacity 700ms;
    padding: 150px;
    box-sizing: border-box;
    display: flex !important;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center !important;
    padding: 150px;
    box-sizing: border-box;
    text-shadow: 2px 2px 15px #3D3D3D;
}

.slide .slide-content {
    width: 600px;
    text-align: left;
}

.slide h4 {
    font-family: inherit;
    text-transform: uppercase;
    color: white;
    text-shadow: 2px 2px 13px #3D3D3D;
}

.slide p {
    font-family: inherit;
    color: white;
    font-size: 20px;
    text-shadow: 2px 2px 15px #3D3D3D;
}

.slide:nth-child(1) {
    background-color: #35C0ED;
    opacity: 1;
    background-image: url(../img/devportais.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.slide:nth-child(2) {
    background-color: #35C0ED;
    background-image: url(../img/infraestrutura.png);
    background-repeat: no-repeat;
    background-size: cover;
}


.slide:nth-child(3) {
    background-color: #35C0ED;
    background-image: url(../img/gamificacao.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.slide:nth-child(4) {
    background-color: #35C0ED;
    background-image: url(../img/rfid.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.slide:nth-child(3) {
    background-color: #35C0ED;
}

.slide[data-state=active] {
    display: block;
}

.indicators {
    position: absolute;
    bottom: 20px;
    display: flex;
    justify-content: center;
    right: 0;
    left: 0;
    /*border: 1px solid red;*/
}

.indicators span label {
    width: 11px;
    height: 11px;
    border-radius: 50px;
    background-color: white;
    display: inline-block;
    cursor: pointer;
    transition: .2s all ease;
}

.indicators span .input-checked {
    width: 25px;
}

.indicator {
    opacity: 0;
}

@media screen and (min-width: 1900px){
    .carousel {
        min-height: 800px;
    }
}

@media screen and (min-width: 1370px){
    .slide {
        padding: 15%;
    }
    .slide .slide-content {
        width: 50%;
    }
}

@media screen and (max-width: 760px) {
    .slide {
        padding: 100px;
    }
}

@media screen and (max-width: 690px) {
    .slide {
        padding: 50px;
    }

    .slide-content {
        width: 100%;
    }

    .slide h4 {
        font-size: 30px;
    }
}

@media screen and (max-width:432px) {

    .slide-content {
        hyphens: manual;
    }

}


/* WHATSAPP */

.whatsapp {
    position: fixed;
    right: 30px;
    bottom: 30px;
    background-color: #24CC63;
    width: 57px;
    height: 57px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.whatsapp a {
    color: white;
}

/* SOBRE */

.sobre-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.sobre-content {
    width: 40%;
}

.sobre-content>p {
    margin-top: 20px;
    padding-left: 10px;
    line-height: 22px;
}

.sobre-content-title {
    border-left: 2px solid #56C9F5;
    padding-left: 10px;
}

.sobre-content-title>h4 {
    font-weight: 500;
    color: #56C9F5;
}

.sobre-content-title>h2 {
    font-weight: 500;
    font-size: 32px;
}

.sobre-image-block {
    position: relative;
}

.sobre-image-block img {
    border-radius: 50%;
    width: 350px;
    height: 350px;
    margin-left: 30px;
}

.sobre-image-block .sobre-circle {
    width: 150px;
    height: 150px;
    background-color: #35C0ED;
    position: absolute;
    bottom: 0px;
    border-radius: 50%;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
}

.sobre-image-block .sobre-circle div {
    text-align: center;
    color: white;
}

.sobre-image-block .sobre-circle div h4 {
    font-weight: 400;
}

@media screen and (max-width: 846px) {
    .sobre-container {
        flex-wrap: wrap;
    }

    .sobre-content {
        width: 100%;
        margin-bottom: 30px;
    }

}

@media screen and (max-width: 410px) {
    .sobre-image-block img {
        width: 300px;
        height: 300px;
    }
    .sobre-image-block .sobre-circle {
        width: 135px;
        height: 135px;
    }
}

@media screen and (max-width: 378px){
    .sobre-image-block img {
        width: 220px;
        height: 220px;
    }
    .sobre-image-block .sobre-circle {
        width: 110px;
        height: 110px;
    }
    .sobre-image-block .sobre-circle div h4 {
        font-size: 13px;
    }
}

/* NOSSOS SERVIÇOS */

.visible {
    display: block !important;
}

.none {
    display: none;
}

#nossos-servicos {
    /*background-color: #F3FFFD;*/
    background-color: #F3FFFD;
    border: 1px solid #D6EEF8;
    /*background-color: #D6EEF8;*/
}

.nossos-servicos-container>h4 {
    font-weight: 500;
    color: #56C9F5;
    text-align: center;
}

.nossos-servicos-container>h2 {
    font-weight: 500;
    font-size: 32px;
    text-align: center;
}

.nossos-servicos-bx {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    justify-content: space-around;
    margin-top: 30px;
}

.nossos-servicos-cards-row {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    padding: 0 20px;
    gap: 20px;
}

.nossos-servicos-cards-row:nth-child(1) {
    margin-bottom: 20px;
}

.nossos-servicos-card {
    width: 220px;
    height: 230px;
    background-color: white;
    border-radius: 15px;
    padding: 15px;
    box-sizing: border-box;
    box-shadow: 0px 0px 7px rgb(221, 217, 217);
    cursor: pointer;
}

.card-select {
    background-color: #56C9F5 !important;
}

.card-select h3,
.card-select p {
    color: white !important;
}

.nossos-servicos-card-top {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: center;
    align-items: center;
    /*height: 80px;*/
}

.nossos-servicos-card-top-circle {
    background-color: #D6EEF8;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
}

.nossos-servicos-card-top-circle svg {
    color: #56C9F5;
}

.nossos-servicos-card-content h3 {
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 20px;
    color: #282C2D;
    /*text-align: center;*/
}

.nossos-servicos-card-content p {
    margin-top: 10px;
    font-size: 14px;
}

.nossos-servicos-content {
    width: 460px;
}

.nossos-servicos-content>p {
    margin-top: 20px;
    padding-left: 10px;
    line-height: 22px;
}

.nossos-servicos-content-title {
    border-left: 2px solid #56C9F5;
    padding-left: 10px;
}

.nossos-servicos-content-title>h4 {
    font-weight: 500;
    color: #56C9F5;
}

.nossos-servicos-content-title>h2 {
    font-weight: 500;
    font-size: 32px;
}

@media screen and (min-width: 1700px){
    .nossos-servicos-content {
        width: 40%;
    }
}

@media screen and (max-width: 1000px) {
    .nossos-servicos-bx {
        display: block;
    }

    .nossos-servicos-cards-row {
        justify-content: center;
    }

    .nossos-servicos-content {
        margin: 30px auto 0 auto;
    }
}

@media screen and (max-width: 566px) {
    .nossos-servicos-cards-row {
        padding: 0;
    }
}

@media screen and (max-width: 523px) {
    .nossos-servicos-card {
        width: 190px;
        height: 210px;
    }

    .nossos-servicos-content {
        width: 400px;
    }

    .nossos-servicos-card-content p {
        display: none;
    }

    .nossos-servicos-card-content h3 {
        hyphens: manual;
    }
}

@media screen and (max-width: 458px){
    .nossos-servicos-card{
        padding: 10px;
    }
    .nossos-servicos-card-content h3 {
        font-size: 15px;
    }
}

@media screen and (max-width: 456px) {
    .nossos-servicos-content {
        width: 100%;
    }
}

@media screen and (max-width: 428px) {
    .nossos-servicos-card {
        width: 150px;
        height: 170px;
    }

    .nossos-servicos-content {
        width: 320px;
    }

    .nossos-servicos-card-content h3 {
        font-size: 15px;
    }
}

@media screen and (max-width: 365px) {
    .nossos-servicos-card {
        width: 120px;
        height: 140px;
    }

    .nossos-servicos-content {
        width: 260px;
    }

    .nossos-servicos-card-content h2 {
        hyphens: manual;
    }

    .nossos-servicos-card-content h3 {
        font-size: 13px;
        margin-top: 5px;
    }

    .nossos-servicos-card {
        padding: 15px 0;
        text-align: center;
    }
}

@media screen and (max-width: 301px){
    .nossos-servicos-content {
        width: 100%;
    }
}

/* FORMULÁRIO E MAPA */

.form-maps-bx {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 50px;
    /*margin-top: 30px;*/
}

.form-maps-form {
    width: 430px;
}

.form-maps-form h2 {
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 15px;
    padding: 0;
}

.form-maps-form p {
    margin-bottom: 20px;
}

.form-maps-form form input,
.form-maps-form form textarea {
    display: block;
    background-color: #F3FFFD;
    /*background-color: #D6EEF8;*/
    outline: none;
    border: 1px solid #D6EEF8;
    padding: 15px;
    border-radius: 10px;
    width: 100%;
    margin-top: 10px;
    box-sizing: border-box;
}

.form-maps-form input[type="submit"]{
    transition: .3s all ease-in-out;
}

.form-maps-form input[type="submit"]:hover {
    background-color: #35C0ED;
    border: 1px solid #35C0ED;
    cursor: pointer;
    color: white;
}

@media screen and (min-width: 1600px) {

    iframe {
        width: 50%;
    }

    .form-maps-form {
        width: 40%;
    }

}

@media screen and (max-width: 1060px) {
    .form-maps-bx {
        flex-wrap: wrap;
        justify-content: center;
    }

    .form-maps-form {
        width: 100%;
        margin-bottom: 30px;
    }

    iframe {
        width: 100%;
        height: 200px;
    }

}

/* DEPOIMENTOS   */

/* #depoimentos *{
    border: 1px solid red;
} */

#depoimentos div h4 {
    font-weight: 500;
    color: #56C9F5;
    text-align: center;
}

#depoimentos div .h2 {
    font-weight: 500;
    font-size: 32px;
    text-align: center;
}

.dep-container-cards{
    margin: 0 auto;
}

.dep-cards-row{
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: center;
    margin-bottom: 20px;
    gap: 20px;
}

.dep-cards-row:nth-child(1){
    margin-top: 30px;
}

.dep-card{
    min-width: 400px;
    max-width: 400px;
    /* border: 1px solid red; */
    padding: 20px;
    box-shadow: 0 0 20px #F0F0F0;
    border-radius: 10px;
}

.dep-card-top{
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.dep-card-top img{
    width: 80px;
    border-radius: 50%;
}

.dep-card-top i{
    color: #4CCCFC;
    font-size: 40px;
    align-self: flex-start;
}

.dep-card-content h2{
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.dep-card-bottom p{
    font-weight: 500;
}

@media screen and (min-width: 1856px){
    .dep-container-cards{
        display: flex;
        display: -webkit-flex;
        display: -ms-flexbox;
        gap: 20px;
        justify-content: center;
    }
    .dep-cards-row{
        margin-top: 30px;
    }
    #depoimentos > div{
        padding: 50px 0px;
        width: 96%;
    }
}

@media screen and (min-width: 1743px) {
    .dep-container-cards{
        flex-wrap: nowrap;
    }
}

@media screen and (max-width: 1017px){
    .dep-cards-row{
        flex-wrap: wrap;
    }
}

/* LOGOS */

/* #empresas-logo *{
    border: 1px solid red;
} */

.logo-slider img {
    width: 100%;
}

#empresas-logo div {
    margin: 0 auto;
}

#empresas-logo div h4 {
    font-weight: 500;
    color: #56C9F5;
    text-align: center;
}

#empresas-logo div h2 {
    font-weight: 500;
    font-size: 32px;
    text-align: center;
}


/* FOOTER  */

.creditos{
    padding: 10px;
    background-color: #35C0ED;
    display: flex;
    justify-content: center;
    color: white;
    font-size: .8em;
}

.creditos p{
    text-align: center;
}

.creditos p a{
    color: white;
}

footer {
    background-color: #F3FFFD;
    border-top: 1px solid #D6EEF8;
    padding-bottom: 20px;

}

footer>div {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: space-around;
}

footer>div h4 {
    margin-bottom: 15px;
    font-weight: 500;
}

footer div ul li {
    list-style: none;
}

.footer-frase {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    align-self: center;
}

.footer-frase img {
    width: 200px;
}

.footer-nos-siga a{
    color: #878B8C!important;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    padding: 5px 0;
    gap: 5px;
}

.footer-nos-siga svg{
    color: #878B8C!important;
    display: inline-block;
}

@media screen and (max-width: 854px) {
    .footer-container {
        flex-wrap: wrap;
    }

    .footer-frase {
        width: 100%;
        justify-content: center;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 584px) {
    .footer-endereco {
        width: 100%;
        order: 2;
        text-align: center;
        margin-bottom: 15px;
    }

    .footer-links {
        order: 3;
    }

    .footer-nos-siga {
        order: 4;
    }
}

@media screen and (max-width: 410px){
    footer>div {
        padding: 20px 0px;
    }
}
