/* ESTILO GERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: rgb(3, 3, 54);
    height: 100vh;
    /* scroll-behavior: smooth; */
}

.flex {
    display: flex;
    /* justify-content: center; */
    
}

.interface {
    max-width: 1280px; /* largura maxima */
    margin: 0 auto;
    
}
.btn-contato button {
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 600;
    background-color: rgb(0, 217, 255);
    box-shadow: 0px, 0px, 10px 2px rgba(17, 3, 82, 0.637);
    border: 0;
    border-radius: 10px;
    cursor: pointer;
}
.btn-contato button:hover, form .btn-enviar input[type=submit]:hover {
    box-shadow: 0px 0px 8px rgb(0, 238, 255);;
    transform: scale(1.03);
    transition: .2s;
}

h2.titulo {
    color: rgb(0, 238, 255);
    font-size: 37.2px;
    line-height: 40px;
    font-weight: 600;
    text-align: center;
    /* font-family: "Poppins", sans-serif; */
}




/* ESTILO DO CABEÇALHO */
header {

    width: 100%;
    position: fixed;
    top: 0;
    background-color: rgb(3, 3, 54);
    z-index: 4;

}
.linha-baixo-header {
    position: sticky;
    top: 0;
    background-color: aqua;
    width: 100%;
    height: 3px;
    z-index: 5;

}


header > .interface {  /* seleciona diretamente a classe que esta dentro da header */
    padding: 26px 0%;
    padding-left: 1%;
    display: flex;
    align-items: center;
    justify-content: space-between; /* ficam o maximo possivel distante entre eles */
    transition: 0.6s;

}
.interface.rolagem {
    padding: 0px 0%;
    padding-left: 1%;
    
}


header a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    display: inline-block;
}
header a:hover {
    color: rgb(0, 238, 255);
    transform: scale(1.1);
    transition: .2s;
}

header nav ul {
    list-style-type: none;
    font-size: 20px;

}
header nav.menu-desktop li {
    display: inline-block;
    padding: 0 40px;
    
}

/* ESTILO MENU MOBILE */

.overlay {
    background-color: rgba(0, 0, 0, 0.507);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 777;
    display: none;
}
.btn-abrir-menu  {
    padding: 4% 4%;
    display: none;
}
.btn-abrir-menu i {
    color: aqua;
    font-size: 40px;
}


.menu-mobile {
    background-color: rgb(23, 1, 83);
    height: 100vh;
    width: 0%; /* ------------------------- <------------- */
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10000000000000000000;
    overflow: hidden;
    transition: .5s;

}
.menu-mobile nav ul {
    text-align: right;

}
.menu-mobile nav ul li a{
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
    padding: 20px 6%;
    display: block;
}
.menu-mobile nav ul li a:hover {
    background-color: rgb(0, 238, 255);
}

.menu-mobile .btn-fechar i {
    color: rgb(0, 238, 255);
    font-size: 30px;

}
.menu-mobile .btn-fechar{
    padding: 20px 6%;
}


.menu-mobile.abrir-menu {
    width: 70%;
}

.menu-mobile.fechar-menu {
    width: 0%;
}

.menu-mobile.abrir-menu ~ .overlay { /* sempre que a classe abrir-menu passar a existir, manipula a classe overlay */
    display: block;
}

/* ESTILO DO TOPO (MAIN) DO SITE */

section.topo-site {
    padding: 0 4%;
    padding-top: 310px;
    padding-bottom: 0px;
    background-image: url(../Images/fundo3.jpg); 
    background-size: cover; /* Isso garante que a imagem cubra todo o fundo */
    background-repeat: no-repeat; /* Evita que a imagem se repita */
    background-attachment: fixed;

}
section .topo-site.flex {
    align-items: center;
    justify-content: center;
    
    /* gap: 90px; */

}
.topo-site h1 {
    padding-top: 80px;
    color: rgb(255, 255, 255);
    font-size: 37.2px;
    line-height: 50px;
    /* font-weight: 650; */
}
.topo-site .txt-topo-site h1 span {
    color: rgb(0, 217, 255);
}
.topo-site .txt-topo-site p {
    color: white;
    margin-top: 25px;
    margin-bottom: 30px;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 260;
    
}
/* .topo-site .btn-contato button {
    padding: 15px 50px;
    font-size: 18px;
    font-weight: 600;
    background-color: rgb(0, 217, 255);
    border: 0;
    border-radius: 10px;
    cursor: pointer;
} */

.txt-topo-site {
    flex: 1.2;
    padding-top: 30px;
}
.img-topo-site {
    flex: 1;
    text-align: right;
    margin-bottom: -7px;
    align-items: flex-end;
}

.img-topo-site img {
    max-width: 100%; /* Evita que a imagem ultrapasse o tamanho do container */
    height: auto; /* Mantém a proporção da imagem */
    
    
}











/* ESTILO PRODUTOS */

.Produtos .swiper-button-next, .swiper-button-prev {
    padding-top: 100px;
}
.Produtos {
    /* min-height: 100vh; */
    padding: 120px;
    align-items: center;
    justify-content: center;
    /* background-color: rgb(12, 104, 190); */

}
.slide-container {
    max-width: 1200px;
    min-width: 290px;
    padding-top: 100px;  
    
    /* background-color: rgb(63, 162, 255); */
}
.slide-content{
    margin: 0 40px;
    overflow: hidden;
    border-radius: 30px;
}
.slide-content .card-wrapper {
    size: 50px;
}

.card{
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0px 14px;
    padding-bottom: 6px;
    border-radius: 25px;    
}
.card-image .card-img{
    width: 275px;
    height: 490px;
    object-fit: cover;
    border-top-left-radius:  25px;
    border-top-right-radius:  25px;
}
.card .card-img:hover {
    transform: scale(1.015);
    transition: .5s;
}

h4 {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
}
.slide-container h3 {
    color: white;
    font-size: 22px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-weight: 260;
    font-style: normal;
    padding-bottom: 37px;
    padding-top: 27px;
}






/* ESTILO CATALOGO */

section.catalogo {
    overflow: hidden;
    background-color: white;
    padding: 120px 4%;
}
section.catalogo .flex {
    align-items: center;
    gap: 30px;
    margin: 0 70px;
}
.img-catalogo img {
    border-radius: 30px;
    height: 60%;
    width: 60%;
    /* align-items: center; */
    /* background-color: red; */
}
.img-catalogo {
    
    /* align-items: center; */
    display: flex;
    justify-content: center;
    
}

.txt-catalogo p{
    font-size: 19px;
    margin: 10px 15px;
    margin-right: 10px;
    text-align: justify;
}

.linha-centro {
    padding: 100px 1px;
    background-color: aqua;
}

.catalogo .btn-contato {
    margin-left: 15px;
}



/* ESTILO BENEFICIOS */
section.beneficios {
    padding: 120px 4%;
    /* background-color: rgb(255, 255, 255); */
}
section.beneficios .flex {
    gap: 30px;
}
.beneficios .benef-box {
    padding: 40px;
    /* border: 2px solid white; */
    background-color: rgb(2, 2, 70);
    border-radius: 20px;
    margin-top: 35px;
}


.beneficios .benef-box img {
    height: 75px;
}
.beneficios .benef-box p { 
    color: rgb(255, 255, 255);
    font-family: "Poppins", sans-serif;
    font-weight: 370;

}
.beneficios .benef-box h3 {  /*titulo beneficios */
    color: rgb(255, 255, 255);
    font-weight: 10px;
    font-size: 26px;
    margin: 15px 0;
    line-height: 25px;
}




/* ESTILO SOBRE NOS */
section.sobre-nos {
    padding: 120px 4%;
    /* margin: 100px 0; */
    background-color: #fff;

}
.txt-sobre {
    color: #000000;
}
.txt-sobre p{
    font-size: 19px;
    margin: 10px 0;
    /* margin-right: 10px; */
    text-align: justify;
}
.txt-sobre .btn-contato {
    padding: 20px 0;
}
section.sobre-nos .flex {
    align-items: center;
    gap: 60px;
    margin: 0 5px;
}

.img-sobre img {
    border-radius: 30px;
    height: 500px;
    width: 500px;
}





/* ESTILO FORMULARIO (FALE CONOSCO) */

section.formulario {
    padding: 120px 4%;
}
form {
    max-width: 500px;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

form input, form textarea {
    width: 100%;
    background-color: rgba(17, 3, 82, 0.637);
    border: 0;
    outline: 0;
    padding: 20px 15px;
    border-radius: 20px;
    color: #fff;
    font-size: 18px;
}
form textarea {
    resize: none;
    height: 210px;
}

form .btn-enviar {
    margin-top: 18px;
    text-align: center;
    
}

form .btn-enviar input[type=submit] {
    width: 120px;
    background-color: rgb(0, 217, 255);
    color: black;
    font-weight: 600;
    font-size: 22px;
    cursor: pointer;
    padding: 10px 0;
    justify-content: center;
}
/* form input::placeholder {
    color: 
} */





/* ESTILO DO RODAPE */
footer {
    padding: 60px 4%;
    box-shadow: 0 0 15px 5px rgb(0, 217, 255);
}
footer .interface {
    color: #fff;
}

footer .logo-footer img {
    height: 200px;
    width: 200px;
}
footer .line-footer, .line-footer-baixo {
    align-items: center;
    text-align: center;
}
footer .flexFooter {
    display: flex;
    justify-content: space-between;
    margin-top: 7px;
}
.insta img {
    width: 52px;
}
.zap img {
    width: 52px;
}

.rede-footer .flex-rede {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.rede-footer img:hover {
    transform: scale(1.05);
    transition: .2s;
    cursor: pointer;
}
.contato-footer a {
    color: rgb(140, 255, 255);
}



/* WhatsApp */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2;  
}
.whatsapp img {
    width: 75px;
    box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.5); /* Deslocamento x, deslocamento y, desfoque, cor */
    border-radius: 50%;  
}
.whatsapp img:hover {
    transform: scale(1.09);
    transition: .2s;
    cursor: pointer;
}






.efeito-txt-topo, .efeito-img-topo, .efeito-benef1, .efeito-benef2, .efeito-benef3, .efeito-benef4, .efeito-cata2, .efeito-cata1 {
    visibility: hidden;
}

/* ================================Responsivo ================================================================================= */


/* ============================================================================================================================= */

/* CABEÇALHO */
@media screen and (max-width: 894px) {
    .menu-desktop {
        display: none;
    }
    .btn-abrir-menu {
        display: inline;
    }
}
@media screen and (max-width: 385px) {
    section.topo-site {
        padding-top: 72px;
    }
    header > .interface {  
        padding: 20px 0%;
    }
}






/* TOPO SITE (MAIN)  ======================================================================================================================*/ 
@media screen and (max-width: 1292px) {
    .topo-site h1 {
        font-size: 35px;
        line-height: 45px;
    }
    .topo-site .txt-topo-site p {
        font-size: 15.5px;
        
    }
}
@media screen and (max-width: 1214px) {
    .topo-site h1 {
        font-size: 33px;
        line-height: 39px;
    }
    .topo-site .txt-topo-site p {
        font-size: 15.5px;
    }
}
@media screen and (max-width: 1146px) {
    .topo-site h1 {
        font-size: 33px;
    }
    .txt-topo-site {
        flex: 1.3;
    }
    .topo-site .txt-topo-site p {
        font-size: 16px;
        
    }
}
@media screen and (max-width: 1109px) {
    .topo-site h1 {
        font-size: 35px;
    }
    .txt-topo-site {
        flex: 0.95;
    }
    .topo-site .txt-topo-site p {
        font-size: 16px;
        
    }
}
@media screen and (max-width: 1069px) {

    .topo-site .flex {
        align-items: flex-end;
    }

    section.topo-site {
        padding-top: 250px;
    }

    
    .topo-site .btn-contato button {
        margin-bottom: 50px;
    }

}
@media screen and (max-width: 968px) {
    .topo-site h1 {
        font-size: 35px;
    }
}
@media screen and (max-width: 938px) {
    .topo-site h1 {
        font-size: 33px;
    }
}
@media screen and (max-width: 894px) {
    /* ESTILO DO TOPO (MAIN) DO SITE */ 

    section.topo-site {
        padding: 0 4%;
        padding-top: 110px;
    }
    .topo-site h1 {
        font-size: 46Px;
        line-height:50px;
        text-align: center;
        
    }
    .topo-site .txt-topo-site p {
        color: white;
        margin: 20px 0px;
        font-size: 19px;
        font-weight: 260;

    }
    .topo-site .btn-contato button {
        padding: 15px 50px;
        font-size: 20px;
        font-weight: 600;
        background-color: rgb(0, 217, 255);
        border-radius: 15px;
        margin: 20px 0px;
    }
    .topo-site .btn-contato {
        text-align: center;
    }
    .img-topo-site img {
        max-width: 70%; /* Evita que a imagem ultrapasse o tamanho do container */
        height: auto; /* Mantém a proporção da imagem */
        width: 65%;
    }


    .txt-topo-site {
        flex: 1;
    }
    .img-topo-site {
        flex: 1;
        text-align: center;
    }
    .topo-site .flex {
        align-items: center;
    }




}
/* @media screen and (max-width: 634px) {
    .topo-site h1 {
        font-size: 35px;
    }
} */
@media screen and (max-width: 870px) {
    .topo-site h1 {
        font-size: 40px;
    }
}
@media screen and (max-width: 572px) {
    .topo-site h1 {
        font-size: 37px;
        line-height: 42px;
    }
    .topo-site .txt-topo-site p {
        font-size: 18px;
        text-align: center;
    }
    .topo-site .btn-contato button {
        font-size: 18px;
        margin: 18px 0px;
    }
    section.topo-site {
        padding: 0 4%;
        padding-top: 82px;
    }
}
@media screen and (max-width: 462px) {
    .topo-site h1 {
        font-size: 35px;
        line-height: 40px;
    }
    .topo-site .txt-topo-site p {
        font-size: 17px;
    }
    .topo-site .btn-contato button {
        font-size: 14px;
        margin: 16px 0px;
    }
    section.topo-site {
        padding-top: 90px;
    }
    .img-topo-site img {
        width: 100%;
    }

}
@media screen and (max-width: 439px) {
    .topo-site h1 {
        font-size: 33px;
        line-height: 38px;
    }
    .topo-site .txt-topo-site p {
        font-size: 15.6px;
    }
    .topo-site .btn-contato button {
        font-size: 13px;
        margin: 16px 0px;
        padding: 13px 30px;
    }
    section.topo-site {
        padding-top: 110px;
    }
    
}
@media screen and (max-width: 417px) {
    .topo-site h1 {
        font-size: 31px;
        line-height: 38px;
    }
    .topo-site .txt-topo-site p {
        font-size: 15.6px;
    }
    .topo-site .btn-contato button {
        font-size: 13px;
        margin: 16px 0px;
        padding: 13px 30px;
    }
    section.topo-site {
        padding-top: 110px;
    }
    
}
@media screen and (max-width: 392px) {
    .topo-site h1 {
        font-size: 29px;
        line-height: 37px;
    }
    .topo-site .txt-topo-site p {
        font-size: 15px;
    }
    .topo-site .btn-contato button {
        font-size: 12.6px;
        margin: 16px 0px;
        padding: 13px 30px;
    }
    section.topo-site {
        padding-top: 120px;
    }
    
}

@media screen and (max-width: 385px) {
    section.topo-site {
        padding-top: 72px;
    }
}


@media screen and (max-width: 367px) {
    .topo-site h1 {
        font-size: 34px;
        line-height: 37px;
    }
}







/* PRODUTOS ======================================================================================================================== */
@media screen and (max-width: 1300px) {
    .slide-container h3 {
        font-size: 21px;
    }
    .slide-container h2 {
        font-size: 36.4px;
    }  
}
@media screen and (max-width: 1121px) {
    .slide-container h3 {
        font-size: 20px;
    }
    .slide-container h2 {
        font-size: 35.6px;
    }  
}
@media screen and (max-width: 1024px) {
    .slide-container h3 {
        font-size: 19px;
    }
}
@media screen and (max-width: 968px) {
    .slide-container h3 {
        font-size: 17px;
        margin-bottom: 33px;
    }
    .slide-container h2 {
        font-size: 35px;
    }
}
@media screen and (max-width: 659px) {
    .Produtos {
        padding: 4%;
    }
}
/* PRODUTOS (CARROSSEL)  ===========================================================================================================*/ 

@media screen and (max-width: 1447px) {
    /* .slide-content {
        width: 900px;
        justify-content: center;
    } */
    .card-image .card-img{
        width: 267px;
    }
}
@media screen and (max-width: 1425px) {
    .card-image .card-img{
        width: 264px;
    }
}
@media screen and (max-width: 1400px) {
    .card-image .card-img{
        width: 260px;
    }
}
@media screen and (max-width: 1381px) {
    .card-image .card-img{
        width: 256px;
    }
}
@media screen and (max-width: 1369px) {
    .card-image .card-img{
        width: 255px;
    }
}
@media screen and (max-width: 1362px) {
    .card-image .card-img{
        width: 250px;
    }
}
@media screen and (max-width: 1350px) {
    .card-image .card-img{
        width: 290px;
    }
    .slide-content {
        margin-left: 70px;
        margin-right: 70px;
    }
}
@media screen and (max-width: 1310px) {
    .slide-content {
        margin-left: 60px;
        margin-right: 60px;
    }
}
@media screen and (max-width: 1265px) {
    .card-image .card-img{
        width: 280px;
    }
    
}
@media screen and (max-width: 1239px) {
    .card-image .card-img{
        width: 270px;
    }
}
@media screen and (max-width: 1205px) {
    .card-image .card-img{
        width: 260px;
    }
}
@media screen and (max-width: 1176px) {
    .Produtos {
        padding: 120px 4%;
    }
    .card-image .card-img{
        width: 290px;
    }
    
}
@media screen and (max-width: 1161px) {
    .card-image .card-img{
        width: 285px;
    }
}
@media screen and (max-width: 1137px) {
    .card-image .card-img{
        width: 282px;
    }
}
@media screen and (max-width: 1106px) {
    .card-image .card-img{
        width: 280px;
    }
}
@media screen and (max-width: 1090px) {
    .card-image .card-img{
        width: 275px;
    }
}
@media screen and (max-width: 1074px) {
    .card-image .card-img{
        width: 270px;
    }
}

@media screen and (max-width: 1038px) {
    .card-image .card-img{
        width: 269px;
    }
}
@media screen and (max-width: 1022px) {
    .card-image .card-img{
        width: 263px;
    }
}
@media screen and (max-width: 1008px) {
    .card-image .card-img{
        width: 257px;
    }
}
@media screen and (max-width: 992px) {
    .card-image .card-img{
        width: 251px;
    }
}
@media screen and (max-width: 970px) {
    .slide-content {
        margin-left: 125px;
        margin-right: 125px;
    }
    .card-image .card-img{
        width: 280px;
    }
}
@media screen and (max-width: 905px) {
    .slide-content {
        margin-left: 75px;
        margin-right: 75px;
    }
    .card-image .card-img{
        width: 290px;
    }
}
@media screen and (max-width: 839px) {
    .card-image .card-img{
        width: 290px;
    }
}
@media screen and (max-width: 820px) {
    .card-image .card-img{
        width: 277px;
    }
}
@media screen and (max-width: 801px) {
    .card-image .card-img{
        width: 260px;
    }
}
@media screen and (max-width: 790px) {
    .card-image .card-img{
        width: 290px;
    }
    .slide-content {
        margin-left: 60px;
        margin-right: 60px;
    }
}
@media screen and (max-width: 786px) {
    .slide-content {
        margin-left: 55px;
        margin-right: 55px;
    }
}
@media screen and (max-width: 766px) {
    .slide-content {
        margin-left: 45px;
        margin-right: 45px;
    }
}
@media screen and (max-width: 746px) {
    .slide-content {
        margin-left: 35px;
        margin-right: 35px;
    }
}
@media screen and (max-width: 726px) {
    .slide-content {
        margin-left: 20px;
        margin-right: 20px;
    }
}
@media screen and (max-width: 700px) {
    .slide-content {
        margin-left: 10Px;
        margin-right: 10px;
    }
}
@media screen and (max-width: 685px) {
    .card-image .card-img{
        width: 270px;
    }
}
@media screen and (max-width: 635px) {
    .card-image .card-img{
        width: 260px;
    }
}
@media screen and (max-width: 605px) {
    .card-image .card-img{
        width: 300px;
    }
    .slide-content {
        margin-left: 17%;
        margin-right: 17%;
    }
}
@media screen and (max-width: 530px) {
    .slide-content {
        margin-left: 14%;
        margin-right: 14%;
    }
}
@media screen and (max-width: 490px) {
    .slide-content {
        margin-left: 12%;
        margin-right: 12%;
    }
}
@media screen and (max-width: 460px) {
    .slide-content {
        margin-left: 10%;
        margin-right: 10%;
    }
}
@media screen and (max-width: 430px) {
    .slide-content {
        margin-left: 7%;
        margin-right: 7%;
    }
}
@media screen and (max-width: 400px) {
    .slide-content {
        margin-left: 4%;
        margin-right: 4%;
    }

    .Produtos .swiper-button-next, .swiper-button-prev {
        visibility: hidden;
    }
}
@media screen and (max-width: 387px) {
    .slide-content {
        margin-left: 1%;
        margin-right: 1%;
    }
}





/* BENEFICIOS ======================================================================================================================*/ 
@media screen and (max-width: 1374px) {
    section.beneficios .flex {
        display: flex;
        flex-wrap: wrap;
        
    }
    .beneficios .benef-box {
        flex: 1 1 45%;
        margin-top: 0px;
    }
    .beneficios h3 {
        border-bottom: 30px;
    }
    .beneficios h2.titulo {
        margin-bottom: 35px;
    }

}

@media screen and (max-width: 500px) {
    .beneficios .benef-box h3 {  /*titulo beneficios */
        font-size: 24px;
    }
}





/* CATALOGO ======================================================================================================================== */
@media screen and (max-width:1176px) {
    section.catalogo .flex {
        margin: 0 0;
    }
}
@media screen and (max-width:1111px) {
    section.catalogo .titulo {
        font-size: 36px;
    }
}
@media screen and (max-width:1000px) {
    section.catalogo .titulo {
        font-size: 34px;
    }
    .txt-catalogo p{
        font-size: 18px;
        margin: 10px 15px;
        margin-right: 10px;
        text-align: justify;
    }
    .img-catalogo img {
        height: 70%;
        width: 70%;
    }
}
@media screen and (max-width: 894px) {

    /* CATALOGO */
    section.catalogo .linha-centro {
        /* visibility: hidden; */
        padding: 1px 29%;
    }
    .img-catalogo img {
        height: 45%;
        width: 45%;
    }
    section.catalogo .titulo {
        margin-top: 18px;
        font-size: 34px;
    }
    section.catalogo p {
        margin-left: 7%;
        margin-right: 7%; 
    }
    section.catalogo .btn-contato {
        text-align: center;
        margin-top: 20px;
    }
}
@media screen and (max-width: 530px) {
    section.catalogo .titulo {
        margin-top: 0px;
    }
    .img-catalogo img {
        height: 55%;
        width: 55%;
    }
    section.catalogo p {
        margin-left: 3%;
        margin-right: 3%; 
    }
}
@media screen and (max-width: 450px) {
    section.catalogo p {
        margin-left: 1%;
        margin-right: 1%; 
        font-size: 16.5px;
    }
}


/*  FORMULARIO (FALE CONOSCO)  =====================================================================================*/

@media screen and (max-width: 663px) {

    form input, form textarea {
        width: 100%;
        background-color: rgba(17, 3, 82, 0.637);
        border: 0;
        outline: 0;
        padding: 17px 12px;
        border-radius: 20px;
        color: #fff;
        font-size: 16px;

    }
}

@media screen and (max-width: 437px) {

    form input, form textarea {
        padding: 15px 12px;
        border-radius: 20px;
        color: #fff;
        font-size: 14px;

    }
}





/* SOBRE NOS ===================================================================================================== */
@media screen and (max-width: 1150px) {
    .txt-sobre p{
        font-size: 17px;
        margin: 10px 0;
        text-align: justify;
    }
    .img-sobre img {
        height: 47vh;
        width: 47vh;
    }
}
@media screen and (max-width: 1090px) {
    .txt-sobre p{
        font-size: 16px;
    }
    .img-sobre img {
        height: 44vh;
        width: 44vh;
    }
}
@media screen and (max-width: 967px) {
    .txt-sobre p{
        font-size: 15px;
    }
    .img-sobre img {
        height: 41vh;
        width: 41vh;
    }
    .txt-sobre .btn-contato button {
        padding: 8px 33px;
        font-size: 15px;
    }
}
@media screen and (max-width: 894px) {
    .txt-sobre p{
        padding-top: 18px;
        font-size: 17px;
    }
    .img-sobre img {
        height: 55vh;
        width: 55vh;
    }
    .txt-sobre .btn-contato {
        text-align: center;
    }
    .txt-sobre .btn-contato button {
        padding: 10px 40px;
        font-size: 18px;
    }
}

@media screen and (max-width: 575px) {

    .img-sobre img {
        height: auto;
        width: 92vw;
    }
    .txt-sobre .btn-contato button {
        padding: 9px 37.5px;
        font-size: 17px;
    }
}
@media screen and (max-width: 444px) {

    .txt-sobre p{
        padding-top: 18px;
        font-size: 16px;
    }
    .txt-sobre .btn-contato button {
        padding: 8px 35px;
        font-size: 14.2px;
    }
}





/* FOOTER (RODAPE) ================================================================================================= */

@media screen and (max-width: 1200px) {
    footer .logo-footer img {
        height: auto;
        width: 17vw;
    }
    .rede-footer .insta img, .rede-footer .zap img{
        height: auto;
        width: 4vw;
    }
    footer p {
        font-size: 15px;
    }
}

@media screen and (max-width: 1035px) {
    footer p {
        font-size: 13px;
    }
    footer h3 {
        font-size: 17px;
    }
}


@media screen and (max-width: 892px) {
    footer .flexFooter {
        display: flex;
        flex-wrap: wrap;     
    }
    footer .footer-box {
        flex: 1 1 45%;
        margin-bottom: 10px;
    }


    footer .logo-footer img {
        width: 47%;
        min-width: 120px;
    }
    .rede-footer .insta img, .rede-footer .zap img{
        height: auto;
        width: 43px;
    }


    footer h3 {
        font-size: 17px;
    }
    footer p {
        font-size: 15px;
    }
    .line-footer-baixo p {
        padding-top: 25px;
    }

}

@media screen and (max-width: 660px) {
    footer .flexFooter {
        flex-direction: column;
    }
    footer .logo-footer img {
        width: 47%;
        min-width: 250px;
    }
    footer .footer-box {
        padding-top: 30px;
    }
    .line-footer-baixo p {
        padding-top: 40px;
        /* padding-bottom: 60px; */
    }
}




/* WHATSAPP ========================================================================================================================= */

@media screen and (max-width: 385px) {
    .whatsapp img {
        width: 67px;
    }
}


 /* CLASSES GERAIS  =============================================================================================================*/
@media screen and (max-width: 894px) {


    .flex {
        flex-direction: column;
    }
}

