.versao {
    background:#130E35;
    padding: 0;
}

.versao ul {
    padding: 0;
    margin: 0;
    float: right
}

.versao ul li {
    list-style: none;
    margin: 0 5px;
    float: left;
}    

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/

a {
    color: #111;
    text-decoration: underline;
}

a:focus {
    outline: thin dotted;
}

a:hover,
a:active {
    color: #333;
    outline: 0;
}

:root {
            --navy-blue: #0a1626; 
            --accent-color: #b67861; 
            --white: #ffffff;
            --text-muted: rgba(255, 255, 255, 0.7);
            --font-main: 'Montserrat', sans-serif;
            --nav-height: 100px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--navy-blue);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* --- NAVBAR --- */
        .navbar {
           
            width: 100%;
            height: var(--nav-height);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 8%;
            z-index: 1000;
            background:#0a1626;
           
        }

        .nav-logo img {            
            width: auto;
            z-index: 1001;
        }

    .nav-logo p{
        font-size: 11px;
        color: #b67861;
    }

        /* Menu Desktop */
        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--white);
            font-size: 14px;
            text-transform: uppercase;           
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .nav-links a:hover {
           color: var(--white);
            opacity: 0.8;
        }

        /* Botão Hambúrguer */
        .mobile-menu-icon {
            display: none;
            cursor: pointer;
            z-index: 1001;
        }

        .mobile-menu-icon div {
            width: 25px;
            height: 2px;
            background-color: var(--white);
            margin: 6px 0;
            transition: 0.4s;
        }


@media (max-width: 992px) {
    .navbar {
        height: auto; /* Permite que a altura cresça com os elementos empilhados */
        flex-direction: column; /* Empilha: Logo -> CRM -> Toggle */
        padding: 20px 0;
        justify-content: center;
        align-items: center;
        gap: 15px; /* Espaçamento entre os elementos */
    }

    .nav-logo {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-logo img {
        margin-bottom: 8px;
    }

    .mobile-menu-icon {
        display: block; /* Mostra o ícone */
        margin: 0 auto; /* Centraliza horizontalmente */
    }

    .mobile-menu-icon div {
        margin: 6px auto; /* Centraliza as barrinhas dentro do ícone */
    }
}


        /* --- HERO SECTION --- */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background-color: var(--navy-blue);
            padding-top: 60px;
        }

        .hero-content {
            width: 50%;
            padding: 0 5% 0 10%;
            z-index: 10;
            position: relative;
        }

       .hero-content h1 {
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent-color);
            font-size: 0.85rem;
            font-weight: normal;
            margin-bottom: 12px;
        }

        .doctor-name {
            display: block;
            font-size: clamp(2.2rem, 4.5vw, 3.5rem);
            line-height: 1.1;            
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 35px;
            color: #fff;
        }

        .doctor-name span { color: var(--accent-color); }

        .description-box {
            border-left: 1px solid var(--accent-color);
            padding-left: 25px;
        }

        .description-box span {
            font-size: 1.2rem;
            font-weight: 300; 
            margin-bottom: 18px;
            display: block;
            color: #fff;
        }

        .description-box p {
            font-weight: 300; 
            font-size: 1rem;
            color: var(--text-muted);
            margin-bottom: 45px;
            max-width: 500px;
        }

        .btn-exclusivo {
            display: inline-block;
            padding: 18px 45px;
            border: 1px solid var(--accent-color);
            color: var(--accent-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 0.75rem;          
            transition: 0.4s;
        }

        .btn-exclusivo:hover {
            background: var(--accent-color);
            color: var(--white);
        }

        .hero-image-wrapper {
            position: absolute;
            right: 0;
            top: 0;
            width: 50%;
            height: 100%;
            z-index: 1;
        }

        .hero-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;           
            object-position: center -300px; /* Sobe a imagem 30 pixels para fora do corte superior */
        }

        .hero-image-wrapper::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, var(--navy-blue) 0%, transparent 45%);
        }

        /* --- MOBILE STYLES --- */
        @media (max-width: 992px) {
            
             .hero-image-wrapper img {                  
            object-position: center -130px; /* Sobe a imagem 30 pixels para fora do corte superior */
        }
            
            
            .mobile-menu-icon { display: block; }

            .nav-links {
                position: fixed;
                right: -100%;
                top: 0;
                height: 100vh;
                width: 100%;
                background-color: var(--navy-blue);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: 0.5s;
                gap: 40px;
            }

            .nav-links.active { right: 0; }

            .nav-links a { font-size: 1.2rem; }

            .hero-section {
                flex-direction: column;
                display: block;
                
            }

            .hero-image-wrapper {
                position: relative;
                width: 100%;
                height: 45vh;
            }

            .hero-image-wrapper::after {
                background: linear-gradient(to top, var(--navy-blue) 5%, transparent 50%);
            }

            .hero-content {
                width: 100%;
                padding: 40px 8%;
                text-align: center;
            }

            .description-box { border-left: none; padding-left: 0; }
            .description-box p { margin: 0 auto 40px auto; }
            .doctor-name { font-size: 2rem; }
        }

        /* Animação X do Hambúrguer */
        .active .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
        .active .line2 { opacity: 0; }
        .active .line3 { transform: rotate(45deg) translate(-5px, -6px); }
        
        
        
/* --- PROCEDIMENTOS EDITORIAL REFINADO --- */
.procedures-section {
    padding: 120px 0;
    background-color: var(--navy-blue);
}

.container-960 {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 400; /* Montserrat 300 */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 15px 0;
    color: #fff;
}

.section-title span {
    color: var(--accent-color);
}

.section-title-1 {
    font-size: 2.2rem;
    font-weight: 400; /* Montserrat 300 */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 15px 0;
    color: #0a1626;
}

.section-title-1 span {
    color: var(--accent-color);
}

.section-description {
    font-size: 0.95rem;
    font-weight: 200; /* Ultra leve */
    color:#fff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.procedures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
}

.procedure-card {
    text-align: center;
    transition: all 0.4s ease;
}

.card-image {
    width: 100%;
    aspect-ratio: 3 / 4; /* Vertical Editorial */
    overflow: hidden;
    margin-bottom: 25px;   
}

.card-image img {
    
    opacity: 0.8;
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-info h3 {
    font-size: 0.85rem;
    font-weight: 300; /* Montserrat 300 */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    color: var(--white);
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-link {
    font-size: 0.65rem;
    text-decoration: none;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(182, 120, 97, 0.2);
    transition: 0.3s;
}

/* EFEITOS DE LUXO */
.procedure-card:hover .card-image img {
    transform: scale(1.08);
    opacity: 1;
}

.procedure-card:hover .card-link {
    border-bottom-color: var(--accent-color);
    letter-spacing: 4px;
    opacity: 0.8;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
    .procedures-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .procedures-grid {
        grid-template-columns: 1fr;
    }
    .container-960 {
        padding: 0 30px;
    }
    .section-title {
        font-size: 1.5rem;
    }
}
        
        /* --- ESTILO DO DISCLAIMER --- */
.procedimentos-footer {
    margin-top: 40px;
    text-align: center;
}

.disclaimer-banco {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem; /* Pequeno e elegante */
    font-weight: 300;    
    color: #999; /* Cinza claro para não competir com os cards */
    letter-spacing: 0.5px;
}

/* Ajuste mobile */
@media (max-width: 768px) {
    .procedimentos-footer {
        margin-top: 30px;
    }
}
        
        
        /* --- SEÇÃO SOBRE CSS --- */
.about-section {
    padding: 120px 0;
    background-color: var(--white); /* Fundo branco para contraste */
    color: var(--navy-blue);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    padding: 15px;
    border: 1px solid rgba(182, 120, 97, 0.3); /* Borda em Bronze */
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(10%); /* Toque elegante */
}

/* Detalhe bronze atrás da imagem */
.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(182, 120, 97, 0.2);
    z-index: -1;
}

.about-text .subtitle {
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: var(--navy-blue);
}

.about-title span {
    color: var(--accent-color);
}

.about-bio p {
    font-size: 0.95rem;
    font-weight: 300; /* Montserrat 300 */
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 25px;
    max-width: 550px;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-title {
        font-size: 1.7rem;
    }
    
    .about-bio p {
        margin-left: auto;
        margin-right: auto;
        text-align: left
    }
}
        
        /* --- DEPOIMENTOS CSS --- */
.testimonials-section {
    padding: 120px 0;
    background-color: var(--navy-blue); /* Fundo marinho para manter o tema */
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03); /* Fundo quase transparente */
    backdrop-filter: blur(10px); /* Efeito glassmorphism */
    border: 1px solid rgba(182, 120, 97, 0.15); /* Borda fina bronze */
    padding: 50px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    border-color: rgba(182, 120, 97, 0.5);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.stars {
    color: var(--accent-color); /* Estrelas em bronze */
    font-size: 1.2rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
    font-style: italic; /* Toque editorial */
    margin-bottom: 30px;
}

.testimonial-author {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-card {
        padding: 35px;
    }
}
        
        
   /* --- SEÇÃO DIFERENCIAIS (STYLE CHIC) --- */
.diferenciais-section {
    padding: 120px 0;
    background-color: var(--white); /* Contraste refinado com o restante do site */
    color: var(--navy-blue);
    text-align: center;
}

/* Container de 960px para manter o alinhamento editorial */
.container-960 {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid configurada para 3 colunas (Desktop) e 1 ou 2 (Mobile) */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    margin-top: 80px;
}

.diferencial-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Box do Ícone - Baseado no seu print */
.icon-box {
    width: 65px;
    height: 65px;
    background-color: var(--navy-blue); /* Fundo Azul Marinho */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    position: relative;
}

.icon-box i {
    font-size: 1.6rem;
    color: var(--white); /* Ícone branco sobre o azul */
    transition: all 0.4s ease;
}

/* Títulos dos diferenciais (Montserrat 300/400) */
.diferencial-item h3 {
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

/* Parágrafos explicativos (Montserrat 300) */
.diferencial-item p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: #555; /* Cinza suave para não pesar */
    max-width: 260px;
}

/* --- EFEITOS DE HOVER LUXUOSOS --- */
.diferencial-item:hover {
    transform: translateY(-10px);
}

.diferencial-item:hover .icon-box {
    background-color: var(--accent-color); /* Troca para o seu Bronze rgb(182, 120, 97) */
    box-shadow: 0 15px 30px rgba(182, 120, 97, 0.2);
}

.diferencial-item:hover h3 {
    color: var(--accent-color);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 900px) {
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em tablets */
        gap: 50px 30px;
    }
}

@media (max-width: 600px) {
    .diferenciais-section {
        padding: 80px 0;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr; /* 1 coluna em celulares */
        gap: 50px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}
        
        
/* --- SEÇÃO CALL TO ACTION (EDITORIAL LUXURY) --- */
.cta-editorial {
    background-color: var(--navy-blue); /* Azul marinho de fora a fora */
    padding: 0;
    width: 100%;
    overflow: hidden;
}

.cta-container {
    max-width: 100%; /* Largura total */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Split Screen 50/50 */
    align-items: stretch; /* Garante que as colunas tenham a mesma altura */
}

/* --- LADO DA IMAGEM (ESQUERDA) --- */
.cta-image-side {
    width: 100%;
    height: 100%;
}

.cta-image-side img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* A regra de ouro: foca no topo (rosto) e centraliza horizontalmente */
    object-position: top center; 
    aspect-ratio: 4 / 5; /* Proporção vertical de editorial de moda */
}

/* --- LADO DO TEXTO (DIREITA) --- */
.cta-text-side {
    padding: 80px 10%; /* Respiro generoso nas laterais */
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Alinhado à esquerda dentro do bloco da direita */
    background-color: var(--navy-blue);
}

.cta-text-content {
    color: var(--white);
    max-width: 500px;
    text-align: left; /* Texto alinhado à esquerda para leitura chic */
}

.cta-title {
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 300; /* Montserrat 300 */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-title span {
    color: var(--accent-color); /* Bronze rgb(182, 120, 97) */
    font-weight: 400;
}

.cta-text {
    font-size: 0.95rem;
    font-weight: 200; /* Ultra leve */
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.btn-exclusivo-cta {
    display: inline-block;
    padding: 18px 45px;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.4s ease;
}

.btn-exclusivo-cta:hover {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(182, 120, 97, 0.3);
    transform: translateY(-3px);
}

/* --- AJUSTES RESPONSIVOS (MOBILE) --- */
@media (max-width: 992px) {
    .cta-container {
        grid-template-columns: 1fr; /* Empilha as colunas */
    }
    
    .cta-image-side img {
        /* Muda para um formato que mostre mais o rosto em telas pequenas */
        aspect-ratio: 1 / 1; 
        height: 450px;
        object-position: top center; /* Garante o rosto no topo mesmo no corte quadrado */
    }
    
    .cta-text-side {
        padding: 60px 30px;
        text-align: center;
    }
    
    .cta-text-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
       
    }
}

@media (max-width: 600px) {
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-image-side img {
        height: 350px; /* Reduz altura da foto no celular */
    }
}    
        
        
/* --- FOOTER RESPONSIVO --- */
.main-footer {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 80px 20px 40px;
    width: 100%;
    box-sizing: border-box;
}

.container-footer {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; /* ESSENCIAL: Permite que as colunas desçam no mobile */
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    flex: 1; /* Distribui espaço igual */
    min-width: 250px; /* Impede que fiquem muito espremidas */
    text-align: center;
}

.footer-col span {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: var(--white);
    display: block
}

.footer-col p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

/* Ícone do Instagram */
.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Créditos Inferiores */
.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.seo-credits {
    font-size: 0.65rem !important;
    opacity: 0.4;
    text-transform: uppercase;
  
}

/* --- AJUSTES PARA TELAS PEQUENAS (MOBILE) --- */
@media (max-width: 768px) {
    .container-footer {
        flex-direction: column; /* Força as colunas a ficarem uma embaixo da outra */
        align-items: center;
        gap: 50px;
    }

    .footer-col {
        min-width: 100%; /* Ocupa a largura total no mobile */
    }

    .main-footer {
        padding: 60px 20px 30px;
    }
}

.seo-link {
    margin-top: 15px;
    font-size: 0.7rem !important;
    opacity: 0.5;
   
}
        .seo-link a{
             color: #fff;
             text-decoration: none;
        }
        
        .seo-link a:hover{
             color: #fff;
             opacity: 0.8;
        }

/* --- BOTÃO WHATSAPP FIXO E PULSANTE --- */
.whatsapp-fixed {
    position: fixed; /* Isso faz o botão "seguir" o scroll do usuário */
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999; /* Valor alto para garantir que fique em cima de tudo */
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    
    /* Configuração de tempo da animação (3 segundos para um pulso suave) */
    --animate-duration: 3s;
}

.whatsapp-fixed:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    animation-play-state: paused; /* Para de pulsar quando o mouse está em cima */
}

/* Ajuste para não sumir ou cortar em celulares */
@media (max-width: 768px) {
    .whatsapp-fixed {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}
        
        /* --- SEÇÃO SELO CSS --- */
.authority-seal-section {
    padding: 60px 0;
    background-color: #f9f9f9; /* Um cinza quase branco para destacar o selo */
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.container-seal {
    max-width: 960px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.seal-img {
    max-width: 320px; /* Tamanho elegante para não dominar a página */
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.seal-img:hover {
    opacity: 1;
}

/* Ajuste para mobile */
@media (max-width: 600px) {
    .authority-seal-section {
        padding: 40px 0;
    }
    .seal-img {
        max-width: 240px;
    }
}