/* Variáveis de cor */

:root {
    --primaria: #816755;
    --secundaria: #ffffff;
    --terciaria: rgb(0, 0, 0);
    --quaternaria: #6b5038;
}

/* Personalizando Barra de rolagem */





.cor-prim {
    color: var(--primaria);
}


.bg-primaria{
    background-image: #f4f1f0;

}
.bg-primaria-2{
    background-image: linear-gradient( var(--secundaria), var(--primaria) );

}
.bg-primaria-3{
    background-image: linear-gradient( var(--primaria), var(--secundaria) );

}

.bg-secundaria{
    background-color: var(--secundaria);
}
.bg-quater{
    background-image: url(../img/Banner-1980x800.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}


figure {
    margin: 0px;
}


.wd-60 {
    width: 60%;
}

.wd-100 {
    width: 100%;
}

.banner-paginas {
    background-size: contain;
    background-position: center;
    width: 100%;
    background-repeat: no-repeat;
}

.banner-paginas h1 {
    color: white;
}

.text-banner-paginas {
    height: 300px;
}

.text-title-principal {
    color: var(--primaria)!important;
}

.text-title-principal-mobile {
    color: var(--primaria)!important;
}

.text-title-principal p{
    color: var(--primaria)!important;
    font-size: 30px;
    font-weight: bold;
}

.text-title-principal-mobile p{
    color: var(--primaria)!important;
    font-weight: bold;
}

.wd-40 {
    width: 50%;
}


.btn-prima {
    padding: 10px 20px;
    text-decoration: none;
    border: none;
    font-weight: 600;
    font-size: 18px;
    color: rgb(255, 255, 255);
    background: var(--primaria);
    border-radius: 100px;
}

.btn-prima:hover {
    transition: 1s;
    color: var(--primaria);
    background: var(--secundaria);
    border: 1px solid var(--primaria);

}

.btn-branco {
    padding: 8px 40px;
    text-decoration: none;
    background-color: white;
    color: var(--quaternaria);
    border: 1px solid var(--quaternaria);
    border-radius: 20px;
}

.btn-branco:hover {
    transition: 1s;
    background-color: var(--quaternaria);
    color: white;
    border: 1px solid white;

}

.btn-primaria {
    padding: 8px 40px;
    text-decoration: none;
    background: var(--quaternaria);
    color: white;
    border-radius: 20px;
}

.btn-primaria:hover {
    transition: 1s;
    color: var(--quaternaria);
    background: white;
    border: 1px solid var(--quaternaria);

}

.btn-secundaria {
    padding: 8px 40px;
    text-decoration: none;
    background: var(--primaria);
    color: #a7775f;
    border-radius: 20px;
}

.btn-secundaria:hover {
    transition: 1s;
    color: #a7775f;
    background: white;
    border: 1px solid var(--primaria);

}

.btn-form{
    background: #83A548;
    padding: 16px;
    width: 186px;
    margin-left: 15px;
    text-decoration: none;
    
    font-weight: 600;
    font-size: 16px;
    color: white;
    border-radius: 8px;
}

.btn-form:hover {
    transition: 1s;
    color: #a7775f;
    background: white;
    border: 1px solid var(--primaria);

}

.btn-sub{
    background: #83A548;
    
    color: white;
    padding: 16px 40px 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
}

.btn-sub:hover {
    transition: 1s;
    color: #a7775f;
    background: white;
    border: 1px solid var(--primaria);

}




.btn-terciaria {
    padding: 15px 40px;
    text-decoration: none;
    background: #83A548;
    color: white;
    border-radius: 100px;
    font-weight: bold;
}

.btn-terciaria:hover {
    transition: 1s;
    color: #83A548;
    background: white;
    border: 1px solid var(--primaria);

}
.hr-custom {
    width: 200px;
    margin-left: -100px;
    color: white;
    opacity: 1;
}

.hr-custom-azul {
    width: 200px;
    margin-left: -100px;
    color: var(--secundaria);
    opacity: 1;
}

.h2-branco {
    color: white;

}

.h2-azul {
    color: var(--primaria);

}


/* Slide Swiper da Home */

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;

  
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet {
    background: white;
}

.btn-position {

    position: absolute; 
    bottom: 40px;
}

/* Header*/

.logo-foot img {
    width: 200px;
}

.logo-custom img{
    width: 250px;
}

.contatos-header a {
    position: relative;
    color: var(--quaternaria);
    text-decoration: none;
    font-weight: bold;
    padding: 5px;
    font-size: 18px;
}

.link-li li {
    list-style: none;
}

.link-li li a{
    font-size: 18px;
    padding-bottom: 5px;
    padding-left: 20px;
    padding-right: 20px;
}


.contatos-header a:before {
    content: "";
    position: absolute;

    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--quaternaria);
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.contatos-header a:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}


.nav-custom-hover a {
    position: relative;
    color: white!important;
    text-decoration: none;  
    font-size: 16px;
}

.nav-custom-hover a:before {
    content: "";
    position: absolute;

    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: white;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.nav-custom-hover a:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}



/* Banner Home */

.banner-home {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}

.text-banner {
    height: 450px;
}


.banner-home h1 {
    color: white;
}

.banner-home p {
    color:  white;
}



/* Banner Home */


.bg-sobre {
    
    background-repeat: no-repeat;
    background-size: contain;
}

.h3-nome {
    font-size: 40px;
    color: white;
}

.pd-sobre {
    padding-top: 100px;
}


/* A Clínica */

.pd-slide-clinica {
    padding-left: 100px;
    padding-right: 100px;
    background: transparent;
}

/* Social Media */

.swiper-button-next:after, .swiper-button-prev:after {
    color: var(--quaternaria);
    font-weight: 1000;
}

.bg-social {
    background-size: cover;
    background-repeat: no-repeat;
}

/* Área de atuação */

.txt-se p {
    margin-bottom: 0px;
    font-size: 18px;
}


.card-servico h4{
    color: white;
}
.card-servico p{
    color: white;
}



.formacao p {
    color: white;
}

.sombra-img {
    box-shadow: 0px 10px 10px  rgba(0, 0, 0, 0.3);
}

.b-radius {
    border-radius: 5px;
}

.card-equipe {
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 10px 10px  rgba(0, 0, 0, 0.3);
}

.card-equipe h5 {
    color: white;
}
.card-equipe span {
    color: white;
    font-style: italic;
}
.card-equipe p {
    color: white;
}

/* Termos */

.termos-custom h6 {
    font-size: 30px;
    color: var(--primaria);
}

.border-termos {
    border-right: 1px solid var(--primaria);
    border-left: 1px solid var(--primaria);
}

.bg-termos {
    background-color: #c6c6c6;
}

.termos-custom p {
    color: var(--primaria);
}


/* Blog Home */

.page-numbers .current {
    background-color: var(--primaria)!important;
    padding: 5px;
    border-radius: 5px;
    color: var(--secundaria)!important;
}


.page-numbers .page-numbers {
    background-color: var(--primaria);
    padding: 5px;
    border-radius: 5px;
    background-color: #e8e8e8;
    color: black;
    text-decoration: none;
}

.page-numbers {
    display: flex;
    padding-top: 30px;
    justify-content: center;
}

.page-numbers li{
    list-style: none;
    padding: 10px;
}

.entry-title {
    font-size: 25px;
    height: 75px;
}

.blog-card h4 {
    color: var(--primaria);
}

.arrow-blog:after, .arrow-blog:after {
    color: var(--primaria);
}

/* Contato */

.mapa-contato iframe {
    border-radius: 20px;
     box-shadow: 0px 10px 10px  rgba(0, 0, 0, 0.3);
     width: 100%;
     height: 50vh;
}

.contato-custom h5 {
    color: var(--primaria);
}

.contato-custom p {
    color: var(--primaria);
}

.contato-custom a {
    color: var(--primaria);
    text-decoration: none;
}

.form-contato input {
    border: 1px solid var(--primaria);
    box-shadow: 0px 5px 5px  rgba(0, 0, 0, 0.3);
}

.form-contato textarea {
    border: 1px solid var(--primaria);
    box-shadow: 0px 5px 5px  rgba(0, 0, 0, 0.3);
}
.text-sobre{
    font-size: 20px;
    font-weight: 500;
}
/* Footer */

.redes i {
    font-size: 25px!important;
    color: var(--primaria);
}

.bg-footer-02 {
     background: var(--primaria);
}

.footer-custom h5 {
    color: var(--quaternaria);
}

.footer-custom p {
    color: var(--primaria);
    font-size: 18px;

}

.footer-custom a {
    color: var(--primaria);
    text-decoration: none;
}

.footer-2 a {
    color: black;
}

.footer-2 p {
    color: black;
}
.bg-footer-02 h5 {
    color: white;
}

.bg-footer-02 p {
    color: white;
}

.bg-footer-02 a {
    color: white;

}
.border-footer {
    border-top: 2px solid var(--primaria);
}


.mapa iframe {
    width: 100%;
    box-shadow: 0px 10px 10px  rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    height: 40vh;
}



.accordion-button:focus {
    box-shadow: 0px 0px 0px  rgba(0, 0, 0, 0.3);
    border-color: transparent!important;

}


.accordion-item {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    border-radius: 10px !important;
    overflow: hidden;
    border: none !important;
}

.accordion-button {
    font-size: 16px;
    font-weight: 500;
    padding: 22px 24px;
    letter-spacing: 0.02em;
    color: #2c2724;
    background-color: rgba(255,255,255,0.92);
    border-radius: 10px !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../img/arrow2.svg);
}

.accordion-button:not(.collapsed) {
    font-weight: 600;
    font-size: 16px;
    background-color: #816755;
    color: #ffffff;
    padding: 22px 24px;
    border-radius: 10px 10px 0 0 !important;
    letter-spacing: 0.02em;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    background-color: rgba(255,255,255,0.92);
    font-weight: 500;
    font-size: 16px;
    padding: 22px 24px;
    color: #2c2724;
    border-radius: 10px !important;
}

.accordion-body {
    background-color: rgba(255,255,255,0.88);
    padding: 20px 24px 24px;
    font-size: 15px;
    line-height: 1.8;
    color: #3c3835;
}

.accordion-button:not(.collapsed)::after {
    color: white;
    
}
.accordion-header
{
    border-radius: 50px;
}

.text-serv-p p {
    color: white;
}

.text-serv-p li {
    color: white;
}


.img-serv-p iframe {
    width: 100%;
}

.img-serv {
    border-radius: 100%;
}

.hg-custom {
    height: 140px;
}


/*------------------------------
    Whats Flutuante
------------------------------*/

/* whatsapp */
.whatsapp {
    width: 60px;
    height: 60px;
    line-height: 80px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    position: fixed;
    bottom: 40px;
    right: 30px;
    cursor: pointer;
    border-radius: 30%;
    -webkit-transition: -webkit-transform ease-out 0.1s, background 0.2s;
    -moz-transition: -moz-transform ease-out 0.1s, background 0.2s;
    transition: transform ease-out 0.1s, background 0.2s;
    z-index: 999;
}

.whatsapp {
  
  animation-duration: 1s; /* don't forget to set a duration! */

}

/*------------------------------
   Depoimentos Cards google
------------------------------*/

#card-depoimento{position:relative;top:0}
#card-depoimento:hover{top:-4px;box-shadow: 0px 6px 6px  rgba(0, 0, 0, 0.3);;
   transition: all .2s ease-in-out}

.b-radius-10 {
    border-radius: 10px;
}

.ava-custom p{
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0px;
}

.b-radius-100 {
    border-radius: 100%;
}

.nome-depoimento {
    font-size: 14px;
    font-weight: bold;
}

.font-date {
    font-size: 12px;
    color: #989898;
}

.overflow-depoi {
    height: 120px;
    overflow-y: scroll;
    max-width: 100%;
}

.color-star i{
    color: #fdc400;
}

.overflow-depoi::-webkit-scrollbar {
    width: 12px;               /* width of the entire scrollbar */
}

.overflow-depoi::-webkit-scrollbar-track {
    background: #eeeeee;        /* color of the tracking area */
}

.overflow-depoi::-webkit-scrollbar-thumb {
    background-color: #929292;    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
    border: 3px solid #eeeeee;  /* creates padding around scroll thumb */
}
.fs-7 {
    font-size: 14px;
}

.shadow-depoi {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
    background-color: #ffffff;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

#card-depoimento:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.pad-depoi {
    padding: 20px 24px;
}

.text-depoi-card p{
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 0px;
    color: #4a4540;
}

.icone-google img {
    width: 20px!important;

}

.wd-avatar {
    width: 50px!important;
}

/* Para quem é indicado */

.quadro-indic {
    border: 1px solid rgb(255, 255, 255);
    height: 410px;
    border-radius: 30px;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3);
    color: rgb(0, 0, 0);
    background-attachment: fixed;
}

.quadro-indic p{
    font-size: 19px;  
    font-family: 'bookman-old-style-regular';  
}

.quadro-indic i{
    font-size: 30px;
    color: var(--terciaria)!important;

}
.title-cuida{
    font-size: 40px;
    text-align: center;
    
  
}

.text-indic{
    text-align: justify;
    line-height: 23px;
    word-spacing: 0,3px;
}
.text-cuid p{
    color: white;
    margin-bottom: 0px;
    text-align: justify;
}
.text-olter{
    text-align: center;
    color: white;
}
.title-older{
    font-size: 25px;
    color: rgb(0, 0, 0);
    font-weight: 600;

}
.icon-user{
    color: white;
    font-size: 50px;
    text-align: justify;
    
}

/* V 2-0 */


/* Banner */

.text-projet{
    color: var(--primaria);
    font-size: 40px;
    font-weight: 500;
    line-height:1.2em;
    
}
.img-drabanner{
    height: 810px;
    width: 694;
}
.text-back{
    color: black;
}
.text-temp{
    color: var(--primaria);
    /* line-height: 28.17px; */
    font-size: 20px;

}
.seu-ema{
    border: 1px solid var(--primaria);
    width: 365px;
    height: 51px;
    padding: 16px;
    border-radius: 8px;
    gap: 8px;
}
.txt-quadro2 {
    font-size: 20px !important;
}

.banner-sobre {
    background-image: url(../img/Sobre-Background.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.banner-sobre-2 {
    background-image: url(../img/Banner-1920x720.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
/* end - Banner */

/* Iframe */

.banner-v{
    background-image: url(../img/Sobre-Background.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.banner-v2{
    background-image: linear-gradient(#2a2a2a, #2a2a2a);   
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.banner-depo{
    background-image: url(https://via.placeholder.com/1800x800/865b4c);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-prin{
    background-image: url(../img/Banner-1980x800.webp);    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);


}
.text-video{
    color: white;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.text-video-2{
    color: #F2F1F1;
    font-size: 14px;
}
.back-2{
    background-color: #eccaa5;
}
.back-3{
    color: #929292;
}
.sombra-img-2{
    border-radius: 31px;
    box-shadow: 0px 10px 10px  rgba(0, 0, 0, 0.3);

}

/* end - Iframe */


/* Sobre */

.text-sobre p {
    color: white;
}

.text-geral p {
    color: #575757;
    text-align: justify;
    margin-left: 40px;
    font-size: 18px;
    

}
.sty-iframe iframe {
    border: 3px solid black;
    padding: 20px;
    border-radius: 31px;
    width:60%!important; 
    height:60vh!important;

}

.foto-thatia{
    border-radius: 30px;
    width: 690px;
    height: 539px;

}
.text-total{
    display: block;
}
/* end - Sobre */


/* Indicados */


.title-sect{
    font-size: 50px;
    color: #e8e8e8;
    font-weight: 700;
}
.text-sect{
    font-weight: 500;
    color: #e8e8e8;
    font-size: 23px;
    text-align: justify;
}
.text-sect-2{
    font-weight: 400;
    color: #e8e8e8;
    font-size: 16px;
    text-align: justify;
}
.sombra-img-3{
    border-radius: 10px;
}

.img-ngtv{
    border-radius: 100%;
    box-shadow: 0px 10px 10px  rgba(0, 0, 0, 0.3);
}

.genero{
    color: white;
    font-size: 30px;
    font-weight: 700;
}
.icone{
    color: #eeeeee;
}
.text-dic{
    color: wheat;
    text-align: justify;
}

/* end - Indicados */


/* Serviços */

.title-Servic{
   color: var(--primaria);
   font-weight: 600;
   font-size: 40px;
   


}
.title-Servic-2{
    color:var(--primaria);
    font-weight: 900;
    font-size: 32px;
}

.hr-white{
    background-color: var(--terciaria);
    width: 100%;
}
.text-aba{
    color: white;
    text-align: justify;
}
.text-aba-2{
    color: var(--terciaria);
    text-align: justify;
}
.title-faq{
    color: #f7007c;
}
.text-ser p{
    color: var(--terciaria);
    text-align: justify;
}
/* end - Serviços */


/* Perguntas Frequentes */

.number-1{
    font-size: 80px;
    color: #ffffff;

}
.card-ser{
    border-radius: 30px ;
    background-color: #af7d62;
    box-shadow: 0px 10px 10px  rgba(0, 0, 0, 0.3);

}
.card-ser:hover{
    background-color: rgb(119, 119, 119);
    box-shadow: 0px 10px 10px  rgba(251, 142, 255, 0.3);

}


.img-anali-lef{
    padding-left: 50px;
}
.img-sobr{
    border-radius: 30px;
    margin-top: 30px;
    box-shadow: 0px 10px 10px  rgba(251, 142, 255, 0.568);

}
.img-sobr:hover{
    box-shadow: 0px 10px 10px  rgba(255, 13, 74, 0.3);

}
.logo-1{
    width: 500px;
    height: 500px;
}
.lista-1 ul{
    list-style: none;
    font-size: 16px;
    line-height: 35px;
    
    font-weight: 300;
    padding-left: 0px;
}

/* End - Perguntas Frequentes  */



/* Form */


.title-form{
        font-family: inherit;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2e2b27;
    margin-bottom: 20px;
    line-height: 1.25;
}
.banner-form{
    background-image: url(https://via.placeholder.com/1920x1080);
    background-repeat: no-repeat;
    background-size: cover;
}
.form-control{
    border-radius: 8px;
    border: 1px solid var(--primaria);
    padding: 16px;
    border-radius: 8px;
    padding: 8px;
    padding-left: 15px;
}
.img-draform{
    width: 526px;
    height: 826px;
}
.icon-person{
    width: 50px;
    margin-left: 170px;
    margin-bottom: 55px;
    height: 50px;
}

.text-end-1{
    color: var(--primaria) !important;
    font-weight: 300;
    font-size: 16px !important;
    line-height:1.2em;
    
}

.title-contat{
    color: var(--primaria) !important;
    font-weight: 600;
    font-size: 24px;
    padding-right: 10px;

}
.title-contat-1{
    color: var(--primaria) !important;
    
    font-weight: 600;
    font-size: 24px;
    padding-right: 10px;
    margin-top: 55px;

}
.localiza{
    color: white;
    width: 18px;
    height: 18px;
}
.text-link{
    color: var(--primaria) !important;
}
.icon-footer-2{
    width: 18px !important;
    height: 18px;
}
.seu-email-2{
    color: white !important;
    
    font-weight: 300;
    font-size: 16px;

}
.bt-sumbmi{
    border-radius: 8px;
    padding: 16px 19px 16px 19px;
    border: 1px solid #83A548;
    width: 344px;
    height: 56px;
}
.logo-drath
{
    margin-bottom: 30px;
}

/*Card com dados do whats ao lado do formulario*/

.icon-contato i {
    font-size: 40px;
    color: white;
}

.card-whats {
    border: 2px solid rgba(255,255,255,0.6);
    background-color: #25d366;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

.card-whats:hover {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
    transform: translateY(-8px);
}

.card-whats p {
    font-weight: bold;
}

.card-mail {
    border: 2px solid rgba(255,255,255,0.6);
    background-color: #f77400;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

.card-mail:hover {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
    transform: translateY(-8px);
}

.card-mail p {
    font-weight: bold;
}

.link-form {
    text-decoration: none;
}
.text-ss{
    font-size: 40px !important;
}

.text-end-22{
    font-size: 18px !important;
}
.text-b-1{
    color: rgb(255, 255, 255) !important;
}
.text-b-2{
    color: black !important;
}




.quadro-indic-2 {
    border: 1px solid rgb(0, 0, 0);
    height: 410px;
    border-radius: 30px;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3);
    color: rgb(0, 0, 0);
}

.dotted-line {
        width: 100%;
        border-top: 2px dotted white;
}
.title-new{
    color: #000000;
    font-size: 25px;
}
.img-new{
    width: 170px;
}









.thamyris-hero {
	margin: 0;
	padding: 0;
	background: #fff;
}

.thamyris-hero__wrapper {
	width: 100%;
	overflow: hidden;
}

.thamyris-hero__top {
	position: relative;
	width: 100%;
	height: 200px;
	background: #947a70;
}

.thamyris-hero__brand {
	position: absolute;
	top: 50%;
	left: 140px;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}

.thamyris-hero__logo {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

.thamyris-hero__logo img {
	display: block;
	width: 185px;
	max-width: 100%;
	height: auto;
	margin: 0;
}

.thamyris-hero__cta-area {
	position: absolute;
	top: 50%;
	right: 70px;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}

.thamyris-hero__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 390px;
	height: 82px;
	border: 1.5px solid rgba(255, 255, 255, 0.55);
	text-decoration: none;
	color: #fff;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 3.5px;
	text-transform: uppercase;
	transition: background 0.35s ease, border-color 0.35s ease;
	box-sizing: border-box;
	padding: 0 24px;
	margin: 0;
	background: rgba(255, 255, 255, 0.06);
}

.thamyris-hero__cta:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.85);
	color: #fff;
}

.thamyris-hero__image-box {
	width: 100%;
	line-height: 0;
	height: clamp(380px, calc(100vh - 200px), 760px);
	overflow: hidden;
}

.thamyris-hero__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

/* Tablet */
@media (max-width: 991px) {
	.thamyris-hero__top {
		height: 175px;
	}

	.thamyris-hero__brand {
		left: 48px;
		top: 50%;
		transform: translateY(-50%);
	}

	.thamyris-hero__logo img {
		width: 130px;
	}

	.thamyris-hero__cta-area {
		right: 32px;
		top: 50%;
		transform: translateY(-50%);
	}

	.thamyris-hero__cta {
		width: 300px;
		height: 70px;
		font-size: 13px;
		letter-spacing: 2.5px;
	}

	.thamyris-hero__image-box {
		height: 320px;
	}

	.thamyris-hero__image {
		object-position: 60% top;
	}
}

/* Notebooks e telas com pouca altura */
@media (max-height: 768px) and (min-width: 992px) {
	.thamyris-hero__top {
		height: 150px;
	}

	.thamyris-hero__logo img {
		width: 130px;
	}

	.thamyris-hero__cta {
		width: 300px;
		height: 60px;
		font-size: 13px;
	}

	.thamyris-hero__image-box {
		height: clamp(320px, calc(100vh - 190px), 600px);
	}
}

/* Mobile */
@media (max-width: 767px) {
	.thamyris-hero__top {
		height: auto;
		padding: 32px 20px 28px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 24px;
	}

	.thamyris-hero__brand,
	.thamyris-hero__cta-area {
		position: static;
		top: auto;
		right: auto;
		left: auto;
		transform: none;
		margin: 0 auto;
	}

	.thamyris-hero__logo img {
		width: 200px;
		margin: 0 auto;
	}

	.thamyris-hero__cta {
		width: 100%;
		max-width: 320px;
		height: 82px;
		font-size: 13px;
		letter-spacing: 2.5px;
	}

	.thamyris-hero__image-box {
		height: 250px;
	}

	.thamyris-hero__image {
		object-position: 65% top;
	}
}


/* ─────────────────────────────────────────────────────────────
   SERVIÇOS — layout editorial premium
───────────────────────────────────────────────────────────── */

.srv-section {
	background-color: #f4efe9;
	background-image: url(../img/Banner-1980x800.webp);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 90px 0 110px;
	position: relative;
}

.srv-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url(../img/Banner-1980x800.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
	z-index: 0;
}

.srv-section > * {
	position: relative;
	z-index: 1;
}

/* ── Intro ──────────────────────────────────────────────────── */
.srv-intro {
	max-width: 660px;
	margin: 0 auto 72px;
	text-align: center;
	padding: 0 24px;
}

.srv-intro__title {
	font-family: inherit;
	font-size: 1.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #2e2b27;
	margin-bottom: 20px;
	line-height: 1.25;
}

.srv-intro__text {
font-size: clamp(1.1rem, 1.8vw, 1.2rem);
    font-weight: 500;
    color: #5a4035;
    letter-spacing: 0.02em;
    line-height: 1.3;
    margin-bottom: 4px;
}

/* ── Lista ──────────────────────────────────────────────────── */
.srv-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 48px;
}

/* ── Separador elegante entre cards ─────────────────────────── */
.srv-item + .srv-item {
	border-top: 1px solid rgba(129, 103, 85, 0.15);
	padding-top: 80px;
}

/* ── Card ───────────────────────────────────────────────────── */
.srv-item {
	display: grid;
	/* imagem 43 % — texto 57 %: mais peso ao conteúdo */
	grid-template-columns: 43fr 57fr;
	gap: 64px;
	align-items: start;
}

/*
 * Alternância: itens pares invertem a ordem das colunas.
 * Ímpar  → imagem esq, texto dir  (ordem padrão)
 * Par    → texto esq, imagem dir  (.srv-item--reverse)
 */
.srv-item--reverse {
	grid-template-columns: 57fr 43fr;
}

.srv-item--reverse .srv-item__visual {
	order: 2;
}

.srv-item--reverse .srv-item__text {
	order: 1;
}

/* ── Texto ──────────────────────────────────────────────────── */
.srv-item__text {
	    font-size: 18px;
    font-weight: 500;
    color: #5a4035;
    letter-spacing: 0.02em;
    line-height: 1.3;
    margin-bottom: 4px;
}

.srv-item__text p {
	margin: 0 0 1.1em;
	color: #3c3835;
	line-height: 1.95;
}

.srv-item__text ul,
.srv-item__text ol {
	padding-left: 1.2em;
	margin: 0 0 1.1em;
}

.srv-item__text li {
	margin-bottom: 0.45em;
	color: #3c3835;
	line-height: 1.8;
}

/* ── Visual (imagem + frame) ────────────────────────────────── */
.srv-item__visual {
	position: relative;
}

.srv-item__frame {
	position: relative;
	display: block;
	width: 100%;
}

.srv-item__img {
	display: block;
	width: 100%;
	height: 420px;
	object-fit: cover;
	object-position: center top;
	border-radius: 5px;
}

/* Moldura branca vazada */
.srv-item__frame::before {
	content: '';
	position: absolute;
	inset: 14px;
	border: 2px solid #ffffff;
	z-index: 2;
	pointer-events: none;
}

/* Gradiente escuro na base */
.srv-item__frame::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(20, 16, 12, 0.65) 0%,
		rgba(20, 16, 12, 0.15) 42%,
		transparent 65%
	);
	z-index: 1;
	pointer-events: none;
}

/* Título sobre a imagem */
.srv-item__title {
	position: absolute;
	bottom: 32px;
	left: 0;
	right: 0;
	text-align: center;
	color: #ffffff;
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	line-height: 1.35;
	z-index: 3;
	padding: 0 28px;
	margin: 0;
}


/* ─── Tablet (768 – 1023 px) ────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1023px) {
	.srv-list {
		padding: 0 32px;
	}

	.srv-item,
	.srv-item--reverse {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
	}

	.srv-item + .srv-item {
		padding-top: 60px;
	}

	.srv-item__img {
		height: 340px;
	}

	.srv-item__title {
		font-size: 0.95rem;
		letter-spacing: 0.2em;
		bottom: 26px;
	}

	.srv-item__text {
		max-width: 100%;
	}
}


/* ─── Mobile (≤ 767 px) ─────────────────────────────────────── */
@media (max-width: 767px) {
	.srv-section {
		padding: 56px 0 72px;
	}

	.srv-intro {
		margin-bottom: 48px;
	}

	.srv-intro__title {
		font-size: 1.35rem;
	}

	.srv-list {
		padding: 0 20px;
	}

	.srv-item + .srv-item {
		padding-top: 48px;
	}

	/* empilha: imagem primeiro, texto depois — em todos os cards */
	.srv-item,
	.srv-item--reverse {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.srv-item__visual,
	.srv-item--reverse .srv-item__visual {
		order: 1;
	}

	.srv-item__text,
	.srv-item--reverse .srv-item__text {
		order: 2;
		padding-top: 0;
		max-width: 100%;
	}

	.srv-item__img {
		height: 260px;
	}

	.srv-item__frame::before {
		inset: 10px;
	}

	.srv-item__title {
		font-size: 0.9rem;
		letter-spacing: 0.18em;
		bottom: 20px;
		padding: 0 16px;
	}
}


/* ─────────────────────────────────────────────────────────────
   SEÇÃO PARA QUEM É INDICADO — refinamento editorial
───────────────────────────────────────────────────────────── */

/* ── Seção wrapper ──────────────────────────────────────────── */
.section-indicado {
	background-color: #faf7f4;
	padding: 72px 0 96px !important;
}

/* ── Respiro vertical da coluna do card ─────────────────────── */
.section-indicado .col-12.col-lg-6.p-2 {
	padding-top: 40px !important;
	padding-bottom: 48px !important;
}

@media (max-width: 767px) {
	.section-indicado {
		padding-bottom: 72px !important;
	}
}

/* ── Card esquerdo — primeira versão + tipografia atual ─────── */
.quadro-indic.banner-prin {
	background-image: url(../img/Banner-1980x800.webp);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-color: transparent;
	border: 1px solid rgb(255, 255, 255);
	border-radius: 30px !important;
	box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3), 0 4px 10px rgba(0, 0, 0, 0.5);
	height: auto;
	min-height: unset;
	padding: 2.5rem 2.25rem !important;
	overflow: visible;
	position: static;
}

.quadro-indic.banner-prin::before {
	display: none;
}

.quadro-indic.banner-prin > * {
	position: static;
	z-index: auto;
}

/* ── Título do card ─────────────────────────────────────────── */
.quadro-indic.banner-prin .title-cuida {
	font-size: 33px;
	font-weight: 500;
	color: rgb(0, 0, 0);
	letter-spacing: 0.04em;
	text-align: center;
	line-height: 1.4;
	padding-bottom: 20px !important;
}

/* ── Lista do card ──────────────────────────────────────────── */
.quadro-indic.banner-prin .lista-1 ul {
	list-style: none;
	padding-left: 0;
	margin: 0 auto;
	font-weight: 300;
	max-width: 88%;
	text-align: left;
}

.quadro-indic.banner-prin .lista-1 ul li {
	font-size: 19px;
	font-weight: 300;
	color: rgb(0, 0, 0);
	line-height: 1.65;
	padding: 6px 0;
	border-bottom: none;
}

.quadro-indic.banner-prin .lista-1 ul li::before {
	display: none;
}

.quadro-indic.banner-prin p {
	font-size: 20px;
	color: rgb(0, 0, 0);
	line-height: 1.7;
}

/* ── Coluna direita — indicados ─────────────────────────────── */
.col-lg-6 .bg-contatos {
	padding-left: 8px;
}

/* Thumbnails dos indicados — ícones discretos */
.bg-contatos figure {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.bg-contatos figure img {
	width: 52px !important;
	height: 52px !important;
	object-fit: cover;
	border-radius: 50%;
	opacity: 0.85;
	filter: saturate(0.8);
}

/* Título de cada item indicado */
.bg-contatos .title-older {
	font-size: 20px;
	font-weight: 500;
	color: #5a4035;
	letter-spacing: 0.02em;
	line-height: 1.3;
	margin-bottom: 4px;
}

/* Texto descritivo de cada item indicado */
.bg-contatos .text-cuid p {
	color: #7a6255;
	font-size: 16px;
	line-height: 1.65;
	margin-bottom: 0;
	text-align: left;
}

/* Espaçamento vertical entre itens indicados */
.bg-contatos > .col-4,
.bg-contatos > .col-lg-2 {
	padding-top: 20px !important;
	padding-bottom: 4px;
}

.bg-contatos > .col-8,
.bg-contatos > .col-lg-10 {
	padding-top: 20px !important;
	padding-bottom: 4px;
}


/* ─── Responsivo tablet ──────────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1023px) {
	.quadro-indic.banner-prin {
		padding: 2rem 1.75rem !important;
	}

	.quadro-indic.banner-prin .lista-1 ul {
		max-width: 92%;
	}

	.bg-contatos figure img {
		width: 44px !important;
		height: 44px !important;
	}
}


/* ─── Responsivo mobile ──────────────────────────────────────── */
@media (max-width: 767px) {
	.quadro-indic.banner-prin {
		padding: 2rem 1.5rem !important;
		margin-bottom: 16px;
	}

	.quadro-indic.banner-prin .title-cuida {
		font-size: 24px;
	}

	.quadro-indic.banner-prin .lista-1 ul {
		max-width: 96%;
	}

	.quadro-indic.banner-prin .lista-1 ul li {
		font-size: 17px;
		padding: 5px 0;
	}

	.bg-contatos .title-older {
		font-size: 17px;
	}

	.bg-contatos .text-cuid p {
		font-size: 14px;
	}

	.col-12.col-lg-6.ps-5 {
		padding-left: 12px !important;
		padding-top: 8px !important;
		padding-bottom: 32px !important;
	}

	.bg-contatos {
		padding-top: 0 !important;
	}

	.bg-contatos > .col-4,
	.bg-contatos > .col-lg-2 {
		padding-top: 14px !important;
		padding-bottom: 14px !important;
	}

	.bg-contatos > .col-8,
	.bg-contatos > .col-lg-10 {
		padding-top: 14px !important;
		padding-bottom: 14px !important;
	}

	.bg-contatos figure img {
		width: 40px !important;
		height: 40px !important;
	}

	.bg-contatos .title-older {
		font-size: 15px;
	}

	.banner-sobre .text-sobre {
		padding-top: 28px;
		padding-bottom: 40px;
	}

	/*
	 * Fallback mobile: background-attachment:fixed não funciona corretamente no iOS
	 * e dispara repaint constante no Android, causando blur e upscale da imagem.
	 * Revertemos para scroll em todos os elementos com background fixo.
	 */
	.banner-sobre,
	.banner-sobre-2,
	.banner-v,
	.quadro-indic,
	.quadro-indic.banner-prin,
	.banner-prin,
	.thamyris-hero,
	.bg-quater {
		background-attachment: scroll;
		background-size: cover;
		background-position: center center;
	}

	/*
	 * .srv-section::before é um pseudo-elemento com background-attachment:fixed
	 * usado para o efeito parallax no desktop. No iOS/Safari, pseudo-elementos
	 * com fixed renderizam a imagem em tamanho de viewport e aplicam upscale,
	 * resultando em imagem borrada. Solução: desativar o ::before no mobile e
	 * deixar o background direto do .srv-section (mesma imagem, sem fixed).
	 */
	.srv-section::before {
		display: none;
	}

	.srv-section {
		background-attachment: scroll;
		background-size: cover;
		background-position: center center;
	}
}


/* ─────────────────────────────────────────────────────────────
   HERO PHRASE — frase principal abaixo do banner
───────────────────────────────────────────────────────────── */

.hero-phrase {
	background-color: #ffffff;
	padding: 64px 24px 56px;
	text-align: center;
}

.hero-phrase__inner {
	max-width: 760px;
	margin: 0 auto;
}

.hero-phrase__title {
	font-size: 1.85rem;
	font-weight: 500;
	color: #2c2724;
	line-height: 1.4;
	letter-spacing: 0.01em;
	margin-bottom: 24px;
}

.hero-phrase__text {
	font-size: 1.05rem;
	font-weight: 400;
	color: #5a4035;
	line-height: 1.85;
	margin: 0;
}

@media (max-width: 767px) {
	.hero-phrase {
		padding: 44px 20px 40px;
	}

	.hero-phrase__title {
		font-size: 1.4rem;
	}

	.hero-phrase__text {
		font-size: 1rem;
	}
}


/* ─────────────────────────────────────────────────────────────
   CONSULTORIA INTRO — texto antes da seção "o que encontrará"
───────────────────────────────────────────────────────────── */

.consultoria-intro {
	max-width: 1100px;
	margin: 0 auto 52px;
	padding: 0 40px;
	text-align: center;
}

.consultoria-intro__principal {

    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #2e2b27;
    margin-bottom: 20px;
    line-height: 1.25;
}

.consultoria-intro__apoio {
	font-size: clamp(1.1rem, 1.8vw, 1.4rem);
	color: #5a4035;
	line-height: 1.65;
	margin: 0;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.3;
    margin-bottom: 4px;
}

@media (max-width: 767px) {
	.consultoria-intro {
		margin-bottom: 36px;
		padding: 0 20px;
	}
}


/* ─────────────────────────────────────────────────────────────
   RC-CARD — crossfade estável entre "Sobre" e "O que encontrará"
   Técnica: CSS Grid stacking — sem position:absolute, sem height fixa
───────────────────────────────────────────────────────────── */

/*
 * O card usa display:grid para empilhar as duas camadas na
 * mesma célula. A seletor triplo (.rc-card.quadro-indic.banner-prin)
 * garante especificidade suficiente para sobrescrever as alturas
 * fixas definidas em responsive.css para .quadro-indic.
 */
.rc-card,
.rc-card.quadro-indic,
.rc-card.quadro-indic.banner-prin {
	display: grid;
	height: auto !important;       /* cancela 630px / 560px do responsive.css */
	min-height: 0 !important;
	border-radius: 30px;
	overflow: visible;             /* não corta padding inferior */
	box-sizing: border-box;
}

/* Ambas as camadas ocupam a mesma célula do grid */
.rc-layer {
	grid-area: 1 / 1;
	padding: 1.75rem 2.25rem;      /* padding uniforme — mesmo espaço em todos os lados */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;   /* conteúdo começa do topo, padding-bottom sempre visível */
	box-sizing: border-box;
	transition: opacity 0.85s ease;
}

/* Transição equilibrada no card .quadro-indic.banner-prin */
.rc-card.quadro-indic.banner-prin .rc-layer {
	transition: opacity 0.8s ease-in-out;
}

/* Camada A: visível por padrão */
.rc-layer--a {
	opacity: 1;
	pointer-events: auto;
	z-index: 2;
}

/* Camada B: oculta por padrão */
.rc-layer--b {
	opacity: 0;
	pointer-events: none;
	z-index: 1;
}

/* Após toggle: A some, B aparece */
.rc-card.rc-show-b .rc-layer--a {
	opacity: 0;
	pointer-events: none;
	z-index: 1;
}

.rc-card.rc-show-b .rc-layer--b {
	opacity: 1;
	pointer-events: auto;
	z-index: 2;
}

/* Título dentro do card */
.rc-title {
	text-align: center;
	margin-bottom: 20px !important;
}

/* Parágrafos do "Sobre" */
.rc-body {
	text-align: center;
	max-width: 100%;
}

.rc-body p {
	font-size: 16px;
	color: rgba(0, 0, 0, 0.78);
	line-height: 1.75;
	margin-bottom: 12px;
}

.rc-body p:last-child {
	margin-bottom: 0;
}

/* Lista do "O que você encontrará" */
.rc-lista {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
	text-align: left;
}

.rc-lista li {
	font-size: 1rem;
	font-weight: 300;
	color: rgb(0, 0, 0);
	line-height: 1.6;
	padding: 10px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.rc-lista li:last-child {
	border-bottom: none;
}

.rc-lista li::before {
	content: '✓';
	margin-right: 10px;
	color: var(--primaria);
	font-weight: 600;
	font-size: 1rem;
	vertical-align: middle;
}

/* ─── Mobile ─────────────────────────────────────────────── */
@media (max-width: 767px) {
	.rc-layer {
		padding: 1.5rem 1.5rem;
	}

	.rc-body p {
		font-size: 15px;
	}

	.rc-lista li {
		font-size: 1rem;
		padding: 8px 0;
	}
}


/* ─────────────────────────────────────────────────────────────
   BENEFÍCIOS TITLE — título acima dos ícones
───────────────────────────────────────────────────────────── */

.beneficios-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #816755;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 20px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(129, 103, 85, 0.25);
}

@media (max-width: 767px) {
	.beneficios-title {
		font-size: 1rem;
		margin-top: 24px;
		padding-left: 4px;
	}
}


/* ─────────────────────────────────────────────────────────────
   WHATSAPP BOTÃO SIMPLIFICADO
───────────────────────────────────────────────────────────── */

.card-whats--simples {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.card-whats__icon {
	font-size: 26px;
	color: #ffffff;
	line-height: 1;
}

.card-whats__label {
	font-size: 1rem;
	font-weight: 600;
	color: #ffffff;
	letter-spacing: 0.04em;
}


/* ─────────────────────────────────────────────────────────────
   INSTAGRAM HANDLE — redes sociais no footer
───────────────────────────────────────────────────────────── */

.social-link-insta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: var(--primaria);
}

.social-link-insta i {
	font-size: 25px;
	color: var(--primaria);
}

.social-handle {
	font-size: 15px;
	font-weight: 500;
	color: var(--primaria);
	letter-spacing: 0.02em;
}


/* ─────────────────────────────────────────────────────────────
   SEÇÃO CONTATO — alinhamento e estrutura
───────────────────────────────────────────────────────────── */

.contato-section {
	padding-top: 56px;
}

/* Título centralizado na própria linha */
.contato-section__title {
	text-align: center;
	margin-bottom: 36px;
}

/* Bloco esquerdo: WhatsApp + mapa empilhados verticalmente */
.contato-bloco-esq {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

/* Botão WhatsApp ocupa largura total do bloco */
.contato-bloco-esq .link-form {
	display: block;
}

/* Mapa: espaçamento acima, largura total */
.contato-mapa {
	margin-top: 24px;
}

.contato-mapa iframe {
	width: 100%;
	height: 340px;
	border: 0;
	border-radius: 5px;
	box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3);
	display: block;
}

/* Imagem da direita: alinhada ao topo da coluna */
.contato-section .col-lg-6 figure {
	margin: 0;
}

/* ─── Mobile ─────────────────────────────────────────────── */
@media (max-width: 767px) {
	.contato-section {
		padding-top: 40px;
	}

	.contato-section__title {
		margin-bottom: 24px;
	}

	.contato-bloco-esq {
		align-items: center;
	}

	.contato-bloco-esq .link-form {
		width: 100%;
	}

	.contato-mapa {
		margin-top: 20px;
		width: 100%;
	}

	.contato-mapa iframe {
		height: 260px;
	}
}