:root {
    --primary: #80388c;
    --secondary: #26999d; 
    --terciary: #506093; 
    --degradent: linear-gradient(135deg, #6a3093, #484d99, #158599, #ebffff );
    --text-color: #333;
    --light-bg: #f8f9fa;
}

@font-face {
    font-family: 'Agrandir';
    src: url('../fonts/Agrandir-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Autography';
    src: url('../fonts/Autography-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: sans-serif; 
    margin: 0;
    color: var(--text-color);
}

h2{
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Agrandir';
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: transparent; 
    transition: all 0.3s ease-in-out;
}

header.scrolled {
    background: #ffffff;
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.nav-side {
    flex: 1;
    display: flex;
    gap: 25px;
}

.nav-right {
    justify-content: flex-end;
}

.nav-left a {
    text-decoration: none;
    color: #ffffff; 
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-left a:hover{
    border-bottom: 2px solid #ffff;
    padding-bottom: 5px;
}

header.scrolled .nav-left a {
    color: var(--primary); 
}

header.scrolled .nav-left a:hover {
    color: var(--secondary); 
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 5px;
}

.nav-logo img {
    height: 90px;
    transition: all 0.3s;
}

.logo-color { display: none; } 

header.scrolled .logo-light { display: none; } 
header.scrolled .logo-color { display: block; }  

.desktop-only { display: flex; }
.hamburger-btn { display: none; }
.menu-overlay{
    display: none;
}
/* Banner Inicial */
.hero {
    position: relative;
    min-height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: flex-end; 
    padding: 0 10%; 
    background-image: url('../img/banner-fundo1.png'); 
    background-size: cover; 
    background-position: center center; 
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-text {
    position: relative;
    z-index: 2; 
    max-width: 650px; 
    color: white;
    text-align: right; 
    animation: slideInRight 1.8s ease-out forwards;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}


.hero-text h1 span {
    font-style: italic; 
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9; 
}

/* Botão do Banner */
.btn-agendar {
    display: inline-block;
    padding: 15px 35px;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px; 
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--light-bg);
}

.btn-agendar:hover {
    background-color: transparent;
    border-color: var(--secondary);
    transform: translateY(-3px); 
}

.btn-more{
    border: 2px solid var(--primary);
    color: var(--primary)

}

.btn-more:hover{
    color: var(--secondary);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-150px); 
    }
    to {
        opacity: 1;
        transform: translateX(0); 
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}
/*espeialidades*/
.services-orbit {
    padding: 80px 0;
    background-color: #fcfcfc; 
}

.orbit-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.service-info {
    flex: 1;
    max-width: 450px;
}


.sub-title {
    color: var(--secondary);
    letter-spacing: 3px;
    font-size: 2rem;
    margin-bottom: 15px;
    display: inline-block;
    border-bottom: 2px solid rgba(21, 153, 87, 0.3);
    padding-bottom: 5px;
    font-family: 'Autography';
}


.sub-title-white {
    color: #fff;
    letter-spacing: 3px;
    font-size: 2rem;
    margin-bottom: 15px;
    display: inline-block;
    border-bottom: 2px solid rgb(255, 255, 255);
    padding-bottom: 5px;
    font-family: 'Autography';
}

.service-info h2 {
    color: var(--primary);
}

.service-info h2 span {
    font-weight: 300;
}

.service-info p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.orbit-container {
    position: relative;
    width: 500px;
    height: 500px;
    flex-shrink: 0; 
}

.orbit-ring {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 1px dashed rgba(106, 48, 147, 0.2); 
    border-radius: 50%;
    margin: 50px; 
    width: 400px;
    height: 400px;
    z-index: 1;
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(106, 48, 147, 0.1);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.center-content {
    transition: opacity 0.3s ease;
}

.center-content h3 {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.center-content p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.4;
}

.satellite {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin-top: -30px; 
    margin-left: -30px; 
    z-index: 3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sat-icon {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 1.2rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.sat-icon img{
    height: 35px;

}

#center-icon{
    height: 35px;
}

/* Item 1*/
.satellite:nth-child(3) { transform: rotate(270deg) translate(200px) rotate(-270deg); }

/* Item 2 */
.satellite:nth-child(4) { transform: rotate(330deg) translate(200px) rotate(-330deg); }

/* Item 3  */
.satellite:nth-child(5) { transform: rotate(30deg) translate(200px) rotate(-30deg); }

/* Item 4  */
.satellite:nth-child(6) { transform: rotate(90deg) translate(200px) rotate(-90deg); }

/* Item 5 */
.satellite:nth-child(7) { transform: rotate(150deg) translate(200px) rotate(-150deg); }

/* Item 6 */
.satellite:nth-child(8) { transform: rotate(210deg) translate(200px) rotate(-210deg); }

.satellite:hover .sat-icon,
.satellite.active .sat-icon {
    background: #f1e6f1; 
    color: white; 
    transform: scale(1.15); 
    box-shadow: 0 0 0 5px rgba(106, 48, 147, 0.2); 
}

/*Sessão Sobre Mim */
.about-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: 
    linear-gradient(to bottom, rgba(255, 255, 255, 0.26), rgba(248, 249, 250, 0.158)),
    url('../img/banner-sobre2.png');
    background-size: cover;     
    background-position: center;  
    background-repeat: no-repeat;
    
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}


.about-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px; 
}


.photo-glass-container {
    position: relative;
    width: 420px;
    height: 420px;
    border-radius: 50%; 
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-frame-overlay {
    position: absolute;
    top: -20px; left: -20px; right: -20px; bottom: -20px; 
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15), inset 0 0 20px rgba(255,255,255,0.4);
    z-index: 3; 
    pointer-events: none; /
}


.profile-pic-glass {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff; 
    position: relative;
    background: #b7a0c7;
    z-index: 2; 
}

.about-text {
    flex: 1;
    padding-left: 30px;
}

.about-text h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 800;
}

.role-title {
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 30px;
    font-weight: 500;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.qualifications {
    list-style: none;
    padding: 0;
    margin: 35px 0;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.qualifications li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #444;
    font-size: 1.05rem;
}

.qualifications img {
    margin-right: 15px;
}

/* Assinatura */
.signature {
    margin-bottom: 30px;
}
.signature p {
    font-family: 'Caveat', cursive; 
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 5px;
}


/*pediatria*/

.pediatrics-section-ref {
    position: relative;
    min-height: 600px; 
    display: flex;
    align-items: center;
    background: var(--degradent); 
    overflow: hidden; 
    padding: 50px 0;
}

.pediatrics-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0; 
    width: 50%; 
    background-image: url('../img/pediatrica.jpg'); 
    background-size: cover; 
    background-position: center center;
    border-radius: 300px 0 0 300px / 50% 0 0 50%;
    border: 2px solid rgb(255, 255, 255);  
    z-index: 1; 
}

pediatrics-container {
    position: relative;
    z-index: 2; 
    display: flex;
    justify-content: flex-start; 
}

.pediatrics-text {
    max-width: 45%;
    color: #fff;
    line-height: 1.6;
}


.highlight-p {
    font-size: 1.2rem; 
    color: var(--light-bg);
    font-weight: 500; 
    margin-bottom: 20px; 
    line-height: 1.5;
}


.btn-primary {
    display: inline-block; padding: 15px 40px;
    background-color: var(--secondary); 
    color: white;
    text-decoration: none; border-radius: 50px; font-weight: 600;
    box-shadow: 0 10px 20px rgba(21, 153, 87, 0.2);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

/* Tecnologias */
.tech-banner-tech {
    position: relative;
    height: 80vh; /* Altura imponente */
    width: 100%;
    overflow: hidden;
}

.tech-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.tech-slide.active {
    opacity: 1;
    z-index: 2;
}

.tech-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
}

.tech-content h2 {
    margin-bottom: 20px;
}


.tech-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-tech {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-tech:hover {
    background: #fff;
    color: var(--primary);
}

/* Indicadores */
.tech-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.dot-tech{
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot-tech.active {
    background: #fff;
}

/*contato*/
.contact-banner {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-image: url('../img/fundo-contact.png'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 80px 0;
}

.contact-wrapper {
    display: flex;
    justify-content: flex-start; 
    width: 100%;
}

.contact-info {
    max-width: 550px; 
    text-align: left; 
    color: #fff;
}

.contact-info h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
}

.contact-info h2 span {
    color: var(--light-bg);
    display: block;
}

.contact-buttons {
    margin-top: 50px;
}


.btn-whatsapp{
    padding: 15px 20px;
    background: var(--degradent);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    font-weight: 600;
}


/*footer*/
.main-footer-modern {
    padding: 60px 5% 40px;
    background: var(--primary);
    position: relative;
    color: #fff;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.logo-footer {
    height: 120px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #fff;
    max-width: 300px;
    font-size: 0.9rem;
}

.footer-cta{
    display: flex;
    gap: 20px;
    align-items: center;
}


.footer-main-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.footer-nav a:hover {
    color: var(--secondary);
}

.footer-social-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.footer-social-icons i {
    font-size: 1.2rem;
}

.footer-address p {
    font-size: 0.9rem;
    margin-bottom: 5px;
    text-align: right;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    padding-top: 20px;
}

/*sobre page*/
.page-header {
    background: var(--degradent); 
    text-align: center;
    color: white;
    min-height: 60vh; 
    display: flex;
    align-items: center;
    justify-content: flex-end; 
    padding: 0 10%; 
    overflow: hidden;
}


.page-header h1{
    font-family: 'Autography';
    font-size: 2.5rem;
}
.sobre-text{
    text-align: justify;
}

.sobre-text h2{
    color: var(--primary);

    
}

.sobre-text p{
    color: rgb(102, 102, 102);
    line-height: 1.6;
}

.sobre-text span{
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 600;
    
}

.formacao-section{
    background: #fcfcfc;
    align-items: center;
    padding: 80px 0;
    justify-content: center;
    display: flex;
    flex-direction: column;
    text-align: center;
}


.formation-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    justify-content: center;
    display: flex;
    gap: 30px;
    
}

.formation-list li {
    /* border-bottom: 2px solid var(--primary); */
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: rgb(102, 102, 102);;
    font-weight: 600;
    width: 40%;
}

.formation-list i { margin-right: 15px; }

/* Galeria */
.simple-gallery { padding: 80px 0; background: var(--degradent); text-align: center; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 5px;
    margin-top: 40px;
}

.gallery-item {
    overflow: hidden;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    cursor: pointer; 
}

.gallery-item:hover img { transform: scale(1.1); opacity: 0.8; }


/* Modal  */
.modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80vh;
    margin-top: 50px;
}

.close { 
    position: absolute; 
    top: 20px; 
    right: 35px; 
    color: #fff; 
    font-size: 40px; 
    cursor: pointer; 
}
.nav-buttons { 
    position: absolute; 
    top: 50%; 
    width: 100%; 
    display: flex; 
    justify-content: space-between; 
    transform: translateY(-50%);
 }

.nav-buttons button { 
    background: none; 
    border: none; 
    color: white; 
    font-size: 50px;
    cursor: pointer; 
    padding: 0 20px; 
}
/*especialidades page*/

/* Container Principal */
.especialist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 80px 0;
    text-align: center;
}

/* Grupo que envolve o círculo e o texto */
.especialist-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}



/* O Círculo */
.especialist-item {
    width: 150px;
    height: 150px;
    background-color: #f1e6f1; 
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
   
}

.especialist-group:hover .especialist-item {
    background-color: var(--primary);
}

/* Ajuste dos Ícones */
.especialist-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
   
}

.especialist-group:hover .especialist-item img {
    filter: brightness(0) invert(1); 
}

/* Textos e Botão */
.especialist-bottom h2 {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 15px;
    height: 50px; 
}

/*tratamentos-page**/

.tratamentos-section {
    position: relative;
    min-height: 600px; 
    display: flex;
    align-items: center;
    background: var(--light-bg); 
    overflow: hidden; 
    padding: 50px 0;
}

.tratamento-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0; 
    width: 50%; 
    background-image: url('../img/osteopatia.jpg'); 
    background-size: cover; 
    background-position: center center;
    border-radius: 300px 0 0 300px / 50% 0 0 50%;
    border: 3px solid var(--secondary);  
    z-index: 1; 
}

#osteopatia-pediatrica{
    background-image: url('../img/pediatrica.jpg'); 
}
#terapia-neural{
     background-image: url('../img/terapia-neural.png'); 
}  

#fisioterapia{
    background-image: url('../img/fisioterapia.jpg'); 
}

#rpg{
    background-image: url('../img/rpg.jpg'); 
}

#termografia{
    background-image: url('../img/termografia.jpg'); 
}

#pilates{
    background-image: url('../img/pilates.jpg'); 
}

#ondas{
    background-image: url('../img/ondas.jpg'); 
}

#macas{
    background-image: url('../img/maca.png'); 
}

#regenerativa{
    background-image: url('../img/regenerativa.png'); 
}


.tratamento-container {
    position: relative;
    z-index: 2; 
    display: flex;
    justify-content: flex-start; 
}

.tratamento-text {
    max-width: 45%;
    color: #666;
    line-height: 1.6;
}

.highlight {
    font-size: 1.2rem; 
    color: var(--secondary);
    font-weight: 500; 
    margin-bottom: 20px; 
    line-height: 1.5;
}

/*whatsapp*/
.whatsapp-float {
    position: fixed; 
    width: 50px; 
    height: 50px; 
    bottom: 40px; 
    right: 40px; 
    border-radius: 50px; 
    text-align: center; 
    font-size: 30px; 
    z-index: 1000; 
    display: flex;
    align-items: center; 
    justify-content: center; 
    text-decoration: none; 
}

.whatsapp-float img.whatsapp-icon {
    width: 70px; 
    height: 70px; 
    vertical-align: middle; 
    border: none; 
    margin-top: 2px; 
}



/* Responsividade */

@media (max-width: 992px) {
    .footer-top-row, .footer-main-content, .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-brand p, .footer-address p {
        margin: 0 auto 20px;
        text-align: center;
    }
    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer-social-icons {
        justify-content: center;
    }

    .about-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    .about-photo { 
        max-width: 400px; 
        margin: 0 auto; 
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-wrapper { 
        flex-direction: column-reverse; 
        align-items: center; 
        text-align: center; 
    }

    .contact-info { 
        padding-bottom: 40px; 
    }

    .location-mini { 
        justify-content: center; 
    }

    .pediatrics-section-ref {

        display: block;
        padding: 0;
        background-color: #fff;
    }

    .pediatrics-bg-image {
        position: relative;
        width: 100%;
        height: 350px; 
        border-radius: 0 0 50% 50% / 0 0 30px 30px; 
        right: auto; bottom: auto;
    }
    
    .pediatrics-container {
        justify-content: center; 
        text-align: center;
        padding: 50px 20px;
    }
    
    .pediatrics-text {
        max-width: 100%; 
        
    }

    .icon-floating { margin: 0 auto 20px auto; }
    .pediatrics-list li { justify-content: center; }

        .orbit-layout {
        flex-direction: column;
        text-align: center;
    }
    .service-info { max-width: 100%; }
    
    .orbit-container {
        transform: scale(0.7); 
        margin-top: -50px; 
    }

     .pediatrics-container {
        flex-direction: column;
        text-align: center;
    }

    .pediatrics-image {
        width: 100%;
        height: 400px; 
        margin-right: 0;
        border-radius: 48% 52% 63% 37% / 39% 39% 61% 61%; 
        margin-top: 40px;
    }
    
     /* --- Lógica de Visibilidade --- */

     .desktop-only { 
        display: none !important; 
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .menu-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        transform: translateY(20px);
        transition: 0.4s ease;
    }

    .menu-overlay.active .menu-links {
        transform: translateY(0);
    }

    .menu-links a {
        text-decoration: none;
        color: var(--primary);
        font-size: 1.5rem;
        font-weight: 500;
        letter-spacing: 1px;
    }

    .social-mobile {
        margin-top: 20px;
        display: flex;
        gap: 30px;
    }
    
    .social-mobile img { height: 35px; } 

    .hamburger-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
        padding: 0;
       
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 90%;
    }

    .hamburger-btn span {
        width: 100%;
        height: 2px;
        background-color: #ffffff; 
        transition: all 0.3s ease;
        margin-right: 10px;
    }

    header.scrolled .hamburger-btn span {
        background-color: var(--primary);
    }

    .hamburger-btn.active span:nth-child(1) { transform: translateY(8px) rotate(40deg); background-color: var(--light-bg) !important; }
    .hamburger-btn.active span:nth-child(2) { opacity: 0; }
    .hamburger-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-39deg); background-color: var(--light-bg) !important; }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--degradent);
        backdrop-filter: blur(10px); 
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease-in-out;
        z-index: 1000; 
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .menu-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .menu-links a {
        text-decoration: none;
        color: var(--light-bg);
        font-size: 1.4rem;
        font-weight: 600;
    }

    .tratamentos-section{
        display: block;
        padding: 0;
        background-color: #fff;
    }

    .tratamento-bg-image{
        position: relative;
        width: 100%;
        height: 350px;
        border-radius: 0 0 50% 50% / 0 0 30px 30px;
        right: auto;
        bottom: auto;
        border: none;
    }

    .tratamento-container{
        padding: 50px 20px;
        text-align: center;
    }

    .tratamento-text{
        max-width: 100%;
        text-align: justify;
    }

    h2{
        text-align: center;
    }

    .page-header{
        justify-content: center;
        align-items: center;
        padding-top:30px;
        
    }

    .hero{
        justify-content: center;
        align-items: center;
        background-image: linear-gradient( rgba(0, 0, 0, 0.315)),
        url('../img/banner-fundo-mobile.png');
        background-attachment: fixed;
    }

    .hero-text{
        text-align: center;
    }

    .hero-text h1{
        font-size: 2.2rem;
    }

    .hero-text p{
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .contact-banner{
        background-image: url(../img/fundo-contact-\ Copia.png)
    }

    .about-container{
        flex-direction: column-reverse;
        gap: 40px;
        align-items: center;
        justify-content: center;
       
    }

    .contact-info{
        text-align: center;
    }

    .about-text{
         text-align: center;
         padding-left: 0;

    }

    .photo-glass-container{
        width: 300px;
        height: 300px;

    }

    .footer-cta{
        display:flex;
        flex-direction: column;
    }

    .header-text{
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;  
    }

    .formation-list{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }


}





