/* PALETA DA LOGO (Imagem WhatsApp Image 2026-06-19 at 19.25.58.jpeg) */
:root {
    --brand-green-deep: #0a231c;   /* Verde Esmeralda de fundo */
    --brand-green-medium: #0f3329; /* Verde para contrastes e menus */
    --brand-gold: #ceb05d;         /* Ouro Real da fênix */
    --brand-gold-hover: #e6c875;   /* Brilho do ouro */
    --light: #ffffff;
    --muted: #a0b2ae;              /* Texto secundário */
    --font: 'Arial', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* RESET INICIAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font);
}

body {
    background-color: var(--brand-green-deep);
    color: var(--light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* NAVBAR LUXO */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 35, 28, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(206, 176, 93, 0.15);
    padding: 18px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.4rem;
    color: var(--light);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--brand-gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 28px;
}

.nav-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover, .nav-item-dropdown:hover .nav-link {
    color: var(--brand-gold);
}

.arrow {
    font-size: 0.65rem;
    transition: var(--transition);
}

/* ESTRUTURA DO SUBMENU (DESKTOP) */
.nav-item-dropdown {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--brand-green-medium);
    border: 1px solid rgba(206, 176, 93, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-radius: 8px;
    list-style: none;
    width: 240px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

/* Exibição no Hover (Desktop) */
@media (min-width: 993px) {
    .nav-item-dropdown:hover .submenu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(5px);
    }
    .nav-item-dropdown:hover .arrow {
        transform: rotate(180deg);
    }
}

.submenu li a {
    color: var(--light);
    text-decoration: none;
    display: block;
    padding: 12px 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.submenu li a:hover {
    background-color: rgba(206, 176, 93, 0.1);
    color: var(--brand-gold);
    padding-left: 24px;
}

/* BOTÃO CTA DO MENU */
.btn-menu-cta {
    background-color: var(--brand-gold);
    color: var(--brand-green-deep);
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-menu-cta:hover {
    background-color: var(--brand-gold-hover);
    transform: translateY(-1px);
}

/* HAMBÚRGUER MOBILE */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--light);
}

/* RESPONSIVIDADE MOBILE-FIRST (Prevenção de Quebras) */
@media (max-width: 992px) {
    .hamburger { display: block; }
    
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 73px;
        flex-direction: column;
        background-color: var(--brand-green-deep);
        width: 100%;
        height: calc(100vh - 73px);
        transition: 0.3s;
        gap: 20px;
        padding: 40px 24px;
        border-top: 1px solid rgba(206, 176, 93, 0.15);
        overflow-y: auto;
        align-items: flex-start;
    }

    .nav-menu.active { left: 0; }

    .nav-item-dropdown { width: 100%; }

    /* Ajuste do Submenu no Mobile */
    .submenu {
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        background-color: rgba(0,0,0,0.1);
        border: none;
        border-left: 2px solid var(--brand-gold);
        border-radius: 0;
        margin-top: 10px;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.3s ease-out;
    }

    .submenu.open {
        max-height: 300px;
    }

    .btn-menu-cta {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

/* ==========================================================================
   1. HERO SECTION - PADRÃO OURO DE ALTO IMPACTO
   ========================================================================== */
.hero-section {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--brand-green-deep) 60%, var(--brand-green-medium) 100%);
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Container Split (Texto na esquerda, imagem na direita) */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* BLOCO DE TEXTO */
.hero-text-block {
    flex: 1;
    max-width: 620px;
    z-index: 2;
}

.hero-badge {
    background: rgba(206, 176, 93, 0.08);
    color: var(--brand-gold);
    border: 1px solid rgba(206, 176, 93, 0.25);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-text-block h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--light);
    margin-bottom: 24px;
}

.hero-text-block p {
    font-size: 1.15rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* BOTÕES DE AÇÃO INTERATIVOS */
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background-color: var(--brand-gold);
    color: var(--brand-green-deep);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(206, 176, 93, 0.2);
}

.btn-hero-primary:hover {
    background-color: var(--brand-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(206, 176, 93, 0.35);
}

.btn-hero-secondary {
    border: 1px solid rgba(206, 176, 93, 0.4);
    color: var(--light);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background-color: rgba(206, 176, 93, 0.05);
    border-color: var(--brand-gold);
    transform: translateY(-3px);
}

/* BLOCO DA IMAGEM MAGNÉTICA */
.hero-image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* Moldura Premium com efeito de borda infinita sutil */
.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; /* Forma orgânica luxuosa */
    background: var(--brand-green-medium);
    border: 2px solid rgba(206, 176, 93, 0.2);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: var(--transition);
}

.image-wrapper:hover {
    border-color: var(--brand-gold);
    box-shadow: 0 25px 50px rgba(206, 176, 93, 0.1);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
    transition: var(--transition);
}

.image-wrapper:hover .hero-img {
    transform: scale(1.05);
}

/* INDICADOR DE SCROLL ANIMADO (O Imã Visual para as IAs e Usuários) */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.mouse-wheel {
    display: block;
    width: 26px;
    height: 42px;
    border: 2px solid var(--muted);
    border-radius: 20px;
    position: relative;
}

.mouse-wheel::before {
    content: '';
    width: 4px;
    height: 8px;
    background-color: var(--brand-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDrop 1.6s infinite ease-in-out;
}

/* ANIMAÇÕES INTERNAS DE ENGENHARIA */
@keyframes scrollDrop {
    0% { opacity: 0; top: 6px; }
    30% { opacity: 1; }
    100% { opacity: 0; top: 22px; }
}

/* RESPONSIVIDADE E TRATAMENTO DE QUEBRAS EM TELAS FINAS */
@media (max-width: 992px) {
    .hero-section {
        padding: 120px 0 80px;
        text-align: center;
        min-height: auto;
    }

    .hero-container {
        flex-direction: column-reverse; /* Imagem fica no topo e texto embaixo para melhor escaneabilidade */
        gap: 48px;
    }

    .hero-text-block {
        max-width: 100%;
    }

    .hero-text-block h1 {
        font-size: 2.6rem;
        letter-spacing: -1px;
    }

    .hero-text-block p {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }

    .hero-actions {
        justify-content: center;
    }

    .btn-hero-primary, .btn-hero-secondary {
        width: 100%; /* Botões empilhados e cheios no mobile removem qualquer atrito de clique */
        text-align: center;
    }

    .image-wrapper {
        max-width: 320px; /* Redução controlada em telas finas */
    }

    .scroll-indicator {
        display: none; /* Ocultado no mobile para poupar espaço vertical útil */
    }
}

/* ==========================================================================
   2. SEÇÃO DA PROFISSIONAL - DESIGN DE AUTORIDADE
   ========================================================================== */
.about-section {
    padding: 120px 0;
    background-color: var(--brand-green-medium); /* Contraste elegante com o fundo do Hero */
    position: relative;
    border-bottom: 1px solid rgba(206, 176, 93, 0.1);
}

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

/* BLOCO DA IMAGEM COM MOLDURA DE LUXO */
.about-image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.about-image-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Borda decorativa dourada deslocada (Efeito High-End) */
.about-image-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid var(--brand-gold);
    border-radius: 8px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.6;
    transition: var(--transition);
}

.about-image-frame:hover::before {
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    opacity: 1;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition);
}

.about-image-frame:hover .about-img {
    transform: scale(1.03);
}

/* BLOCO DE TEXTO E ARGUMENTAÇÃO */
.about-text-block {
    flex: 1.2;
    max-width: 600px;
}

.about-subtitle {
    color: var(--brand-gold);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.about-text-block h2 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--light);
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

.about-text-block p {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-text-block p strong {
    color: var(--brand-gold);
}

/* GRID DE DIFENCIAIS (Métrica de Segurança) */
.authority-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 36px 0;
    border-top: 1px solid rgba(206, 176, 93, 0.15);
    padding-top: 32px;
}

.badge-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.badge-icon {
    color: var(--brand-gold);
    font-size: 1.2rem;
    line-height: 1;
}

.badge-item h4 {
    font-size: 1.05rem;
    color: var(--light);
    margin-bottom: 6px;
    font-weight: 600;
}

.badge-item p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.4;
    margin-bottom: 0;
}

/* BOTÃO DE AÇÃO DA SEÇÃO */
.btn-about-cta {
    display: inline-block;
    background-color: transparent;
    color: var(--brand-gold);
    border: 1px solid var(--brand-gold);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-about-cta:hover {
    background-color: var(--brand-gold);
    color: var(--brand-green-deep);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(206, 176, 93, 0.15);
}

/* BLINDAGEM RESPONSIVA CONTRA QUEBRAS */
@media (max-width: 992px) {
    .about-section {
        padding: 80px 0;
    }

    .about-container {
        flex-direction: column; /* Imagem em cima, texto embaixo no mobile */
        gap: 40px;
    }

    .about-image-block {
        width: 100%;
    }

    .about-image-frame {
        max-width: 340px; /* Redução controlada em smartphones finos */
    }

    .about-text-block {
        max-width: 100%;
        text-align: center;
    }

    .authority-badges {
        grid-template-columns: 1fr; /* Empilha os diferenciais para não esmagar o texto */
        text-align: left;
        gap: 20px;
    }

    .btn-about-cta {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   3. SEÇÃO DO FAQ - ACORDEÃO INTERATIVO PREMIUM
   ========================================================================== */
.faq-section {
    padding: 120px 0;
    background-color: var(--brand-green-deep);
    position: relative;
}

.faq-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.faq-subtitle {
    color: var(--brand-gold);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.faq-header h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.faq-header p {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ESTRUTURA DOS ITENS */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--brand-green-medium);
    border: 1px solid rgba(206, 176, 93, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(206, 176, 93, 0.3);
}

/* BOTÃO DE DISPARO (TOGGLE) */
.faq-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 30px;
    color: var(--light);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.faq-toggle:hover {
    color: var(--brand-gold);
}

/* ÍCONE DINÂMICO (+ / -) INDEPENDENTE DE FONTE EXTERNA */
.faq-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--brand-gold);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Linha Horizontal */
.faq-icon::before {
    top: 7px;
    left: 0;
    width: 16px;
    height: 2px;
}

/* Linha Vertical */
.faq-icon::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 16px;
}

/* Mudança de Estado do Ícone quando Aberto */
.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon::before {
    transform: rotate(180deg);
}

.faq-item.active .faq-toggle {
    color: var(--brand-gold);
    border-bottom: 1px solid rgba(206, 176, 93, 0.08);
}

/* CONTAINER DE CONTEÚDO E ANIMAÇÃO REATIVA DE ALTURA */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-content-inner {
    padding: 24px 30px 30px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* AJUSTES DISPOSITIVOS MÓVEIS (ANTI-QUEBRAS) */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }

    .faq-header h2 {
        font-size: 2rem;
    }

    .faq-toggle {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-content-inner {
        padding: 16px 20px 24px;
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   4. SEÇÃO DE PROCEDIMENTO - SLIDER ANTES E DEPOIS
   ========================================================================== */
.procedure-detail-section {
    padding: 120px 0;
    background-color: var(--brand-green-deep);
    border-bottom: 1px solid rgba(206, 176, 93, 0.1);
}

.procedure-detail-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}

/* TEXTO DA ESPECIFICIDADE */
.procedure-detail-text {
    flex: 1.2;
    max-width: 580px;
}

.procedure-badge {
    color: var(--brand-gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 16px;
}

.procedure-detail-text h2 {
    font-size: 2.8rem;
    color: var(--light);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.procedure-lead {
    font-size: 1.2rem;
    color: var(--brand-gold);
    line-height: 1.5;
    margin-bottom: 24px;
}

.procedure-detail-text p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.procedure-benefits {
    margin: 28px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    color: var(--light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-procedure-cta {
    display: inline-block;
    background-color: var(--brand-gold);
    color: var(--brand-green-deep);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(206, 176, 93, 0.2);
}

.btn-procedure-cta:hover {
    background-color: var(--brand-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(206, 176, 93, 0.35);
}

/* ENGENHARIA DO SLIDER INTERATIVO */
.procedure-detail-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 3 / 4; /* Proporção ideal para fotos de antes e depois de rosto */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(206, 176, 93, 0.15);
}

.comparison-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Posicionamento das camadas */
.image-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.image-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%; /* Inicialmente metade da tela */
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

/* Ajuste para a imagem interna não distorcer quando a div encolher */
.image-before img {
    width: 440px; /* Deve bater exatamente com o max-width do container pai */
    max-width: none;
}

/* Etiquetas flutuantes elegantes */
.label-image {
    position: absolute;
    bottom: 20px;
    background: rgba(10, 35, 28, 0.8);
    backdrop-filter: blur(4px);
    color: var(--light);
    padding: 4px 12px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 4px;
    border: 1px solid rgba(206, 176, 93, 0.2);
    pointer-events: none;
    z-index: 3;
}

.label-before { left: 20px; }
.label-after { right: 20px; }

/* O INPUT INVISÍVEL QUE PEGA O TOQUE */
.slider-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
    cursor: ew-resize;
    z-index: 5;
    -webkit-appearance: none;
}

/* LINHA DIVISÓRIA VISUAL */
.slider-button {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: var(--brand-gold);
    z-index: 4;
    pointer-events: none;
    transform: translateX(-50%);
}

/* Círculo Central do Slider */
.slider-button::before {
    content: '↔';
    font-family: sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: var(--brand-gold);
    color: var(--brand-green-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    border: 2px solid var(--brand-green-deep);
}

.slider-hint {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--muted);
    letter-spacing: 0.5px;
}

/* RESPONSIVIDADE (BLINDAGEM DE MARGENS PARA TELAS FINAS) */
@media (max-width: 992px) {
    .procedure-detail-container {
        flex-direction: column;
        gap: 48px;
    }

    .procedure-detail-text {
        max-width: 100%;
        text-align: center;
    }

    .procedure-detail-text h2 {
        font-size: 2.4rem;
    }

    .procedure-benefits {
        align-items: center;
    }

    .btn-procedure-cta {
        width: 100%;
        text-align: center;
    }

    .comparison-slider {
        max-width: 320px; /* Redução precisa para caber em telas móveis estreitas */
    }

    /* Ajuste sincronizado do tamanho da imagem recortada no mobile */
    .image-before img {
        width: 320px;
    }
}

/* ==========================================================================
   5. SEÇÃO DE PROCEDIMENTO - HARMONIZAÇÃO CORPORAL (CORRIGIDO)
   ========================================================================== */
.corporal-bg {
    background-color: var(--brand-green-medium) !important;
}

.reverse-layout {
    display: flex;
    flex-direction: row-reverse;
}

.slider-corp {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1 / 1 !important; 
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(206, 176, 93, 0.15);
}

.slider-corp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.image-after-corp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.image-before-corp {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.image-before-corp img {
    width: 440px; 
    max-width: none;
}

/* CORREÇÃO AQUI: Garantindo que o input invisível ocupe toda a área e capture o toque */
.slider-input-corp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
    cursor: ew-resize;
    z-index: 5;
    -webkit-appearance: none;
}

.slider-button-corp {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: var(--brand-gold);
    z-index: 4;
    pointer-events: none;
    transform: translateX(-50%);
}

.slider-button-corp::before {
    content: '↔';
    font-family: sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: var(--brand-gold);
    color: var(--brand-green-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    border: 2px solid var(--brand-green-deep);
}

@media (max-width: 992px) {
    .reverse-layout {
        flex-direction: column !important; 
    }

    .slider-corp {
        max-width: 320px;
    }

    .image-before-corp img {
        width: 320px; 
    }
}

/* ==========================================================================
   6. SEÇÃO DE PROCEDIMENTO - HARMONIZAÇÃO DE GLÚTEO
   ========================================================================== */
.slider-gluteo {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 3 / 4; /* Proporção vertical perfeita para enquadramento clínico */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(206, 176, 93, 0.15);
}

.slider-gluteo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.image-after-gluteo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.image-before-gluteo {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.image-before-gluteo img {
    width: 440px; /* Alinhado ao max-width do slider pai */
    max-width: none;
}

/* INPUT TRANSPARENTE DE CAPTURA DE TOQUE */
.slider-input-gluteo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
    cursor: ew-resize;
    z-index: 5;
    -webkit-appearance: none;
}

/* LINHA E BOTÃO DIVISÓRIO */
.slider-button-gluteo {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: var(--brand-gold);
    z-index: 4;
    pointer-events: none;
    transform: translateX(-50%);
}

.slider-button-gluteo::before {
    content: '↔';
    font-family: sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: var(--brand-gold);
    color: var(--brand-green-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    border: 2px solid var(--brand-green-deep);
}

/* BLINDAGEM RESPONSIVA CONTRA QUEBRAS EM TELAS ESTREITAS */
@media (max-width: 992px) {
    .slider-gluteo {
        max-width: 320px;
    }

    .image-before-gluteo img {
        width: 320px; /* Redução controlada para smartphones */
    }
}

/* ==========================================================================
   7. SEÇÃO DE PROCEDIMENTO - HARMONIZAÇÃO ÍNTIMA PREMIUM
   ========================================================================== */
.intimate-premium-card {
    width: 100%;
    max-width: 460px;
    background: linear-gradient(135deg, var(--brand-green-deep) 0%, #061713 100%);
    border: 1px solid rgba(206, 176, 93, 0.25);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Detalhe de iluminação abstrata de fundo (Premium) */
.card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(206, 176, 93, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.intimate-badge {
    background: rgba(206, 176, 93, 0.1);
    color: var(--brand-gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 24px;
    border: 1px solid rgba(206, 176, 93, 0.2);
}

.intimate-premium-card h3 {
    font-size: 1.6rem;
    color: var(--light);
    margin-bottom: 12px;
    font-weight: 600;
}

.intimate-premium-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* ESTRUTURAÇÃO DA TABELA TÉCNICA */
.clinical-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.table-row {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    gap: 15px;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row.head {
    background: rgba(206, 176, 93, 0.05);
    border-bottom: 1px solid rgba(206, 176, 93, 0.15);
}

.table-row.head .col {
    color: var(--light);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.col {
    flex: 1;
    font-size: 0.85rem;
    line-height: 1.4;
}

.text-muted {
    color: var(--muted);
}

.text-gold {
    color: var(--brand-gold);
    font-weight: 600;
}

/* AJUSTES DE RESPONSIVIDADE PARA EMILHAMENTO MÓVEL */
@media (max-width: 992px) {
    .intimate-premium-card {
        max-width: 100%;
        padding: 30px 20px;
    }
    
    .intimate-premium-card h3 {
        font-size: 1.4rem;
    }
    
    .table-row {
        padding: 12px;
    }
    
    .col {
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   8. SEÇÃO DE PROVA SOCIAL (CONTRATE FUNDO BRANCO / CARDS VERDES)
   ========================================================================== */
.testimonials-section {
    padding: 120px 0;
    background-color: #ffffff; /* Fundo Puro para quebra de contraste */
    position: relative;
    /* Borda divisória superior elegante separando as seções */
    border-top: 1px solid rgba(206, 176, 93, 0.3); 
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #f8f9fa;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid #e9ecef;
    margin-bottom: 20px;
}

.google-rating-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a5568;
    letter-spacing: 0.5px;
}

.testimonials-header h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--brand-green-deep); /* Texto escuro para contraste no fundo branco */
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.testimonials-header p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* CARROSSEL E TRAVA DE VISIBILIDADE */
.testimonials-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Oculta barra no Firefox */
    padding: 20px 0;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none; /* Oculta barra no Chrome/Safari */
}

/* CAIXAS DE DEPOIMENTO (Fundo Verde, Borda Dourada) */
.testimonial-card {
    flex: 0 0 calc(33.333% - 20px); /* Exibe 3 por vez no desktop */
    background-color: var(--brand-green-deep);
    border: 2px solid var(--brand-gold); /* Borda Dourada Exigida */
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 12px 30px rgba(10, 35, 28, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.card-stars {
    color: var(--brand-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(206, 176, 93, 0.15);
    padding-top: 16px;
}

.author-name {
    color: var(--light);
    font-weight: 600;
    font-size: 1rem;
}

.author-verified {
    color: var(--brand-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* DOTS INDICADORES DE ROLAGEM */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background-color: var(--brand-gold);
    transform: scale(1.2);
}

/* RESPONSIVIDADE PARA EMILHAMENTO E TELAS FINAS */
@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px); /* 2 por vez em tablets */
        min-height: 280px;
    }
    .testimonials-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    .testimonial-card {
        flex: 0 0 100%; /* 1 por vez no mobile, evitando qualquer quebra horizontal */
        padding: 30px 20px;
    }
}

/* ==========================================================================
   9. FOOTER INSTITUCIONAL PREMIUM
   ========================================================================== */
.main-footer {
    background-color: var(--brand-green-deep);
    padding: 80px 0 0;
    position: relative;
    border-top: 1px solid rgba(206, 176, 93, 0.2);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
    gap: 40px;
    padding-bottom: 60px;
}

/* COLUNA BRANDING */
.footer-brand .logo-text-fallback {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--brand-gold);
    letter-spacing: -0.5px;
    display: block;
    margin-bottom: 20px;
}

.brand-pitch {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    color: var(--brand-gold);
}

/* TÍTULOS E LINKS DAS COLUNAS */
.footer-title {
    color: var(--light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--brand-gold);
    transform: translateX(4px);
}

/* INFORMAÇÕES DE CONTATO */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-info i {
    color: var(--brand-gold);
    margin-right: 6px;
}

/* BARRA INFERIOR (COPYRIGHT & CRÉDITOS) */
.footer-bottom {
    background-color: #061713; /* Tom ligeiramente mais escuro para quebra de bloco */
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--brand-gold);
}

/* ASSINATURA HRLM SITES */
.developer-credits {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.developer-credits a {
    color: var(--brand-gold);
    text-decoration: none;
    transition: var(--transition);
}

.developer-credits a:hover {
    color: var(--light);
}

/* RESPONSIVIDADE (PROTEÇÃO MOBILE-FIRST CONTRA QUEBRAS EM TELAS FINAS) */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 60px 0 0;
    }

    .footer-container {
        grid-template-columns: 1fr; /* Empilhamento perfeito de 1 coluna para telas móveis estreitas */
        gap: 32px;
        padding-bottom: 40px;
    }

    .footer-title {
        margin-bottom: 16px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .legal-links {
        justify-content: center;
    }
}

/* CONTAINER DE ÍCONES ALINHADOS (HORIZONTAL) */
.footer-social-icons {
    display: flex;
    gap: 14px; /* Espaçamento cirúrgico entre os botões */
    margin-top: 10px;
}

/* ESTILIZAÇÃO PREMIUM ESTILO BOTÃO (CIRCLE BADGE) */
.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03); /* Fundo sutil quase invisível */
    color: var(--brand-gold); /* Ícone nasce dourado */
    border: 1px solid rgba(206, 176, 93, 0.3); /* Borda fina dourada */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

/* EFEITO HOVER DINÂMICO */
.social-icon-btn:hover {
    color: var(--brand-green-deep); /* Ícone inverte para verde */
    background-color: var(--brand-gold); /* Fundo preenche com ouro */
    border-color: var(--brand-gold);
    transform: translateY(-3px); /* Leve elevação fluida */
    box-shadow: 0 6px 15px rgba(206, 176, 93, 0.25);
}

/* Alinhamento responsivo para mobile */
@media (max-width: 768px) {
    .footer-social-icons {
        justify-content: center; /* Centraliza perfeitamente no mobile quando as colunas empilharem */
        margin-bottom: 10px;
    }
}

/* ==========================================================================
   ENGENHARIA DE SLIDER ROBUSTA - PADRÃO OURO HRLM SITES
   ========================================================================== */
.slider-labial {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(206, 176, 93, 0.2);
}

.slider-labial .image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-labial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* A mágica do corte nativo usando a variável do CSS */
.before-image {
    clip-path: inset(0 calc(100% - var(--position)) 0 0);
    z-index: 2;
}

.after-image {
    z-index: 1;
}

/* O INPUT DEVE FICAR NO TOPO ABSOLUTO PARA CAPTURAR O CLIQUE */
.slider-input-labial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
    cursor: ew-resize;
    z-index: 10; /* Garante que o clique seja disparado aqui */
    -webkit-appearance: none;
    margin: 0;
}

/* Barra dourada divisória acompanha a variável */
.slider-button-labial {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--position);
    width: 2px;
    background-color: var(--brand-gold);
    z-index: 5;
    pointer-events: none;
    transform: translateX(-50%);
}

.slider-button-labial::before {
    content: '↔';
    font-family: sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: var(--brand-gold);
    color: var(--brand-green-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    border: 2px solid var(--brand-green-deep);
}

@media (max-width: 768px) {
    .slider-labial {
        max-width: 100%; /* Fluido no mobile */
    }
}

/* ==========================================================================
   ENGENHARIA DE SLIDER ROBUSTA - PROTOCOLO DE ACNE
   ========================================================================== */
.slider-acne {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(206, 176, 93, 0.2);
}

.slider-acne .image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-acne img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Corte molecular da imagem do antes usando a variável global */
.slider-acne .before-image {
    clip-path: inset(0 calc(100% - var(--position)) 0 0);
    z-index: 2;
}

.slider-acne .after-image {
    z-index: 1;
}

/* INPUT 100% RESPONSIVO PARA CAPTURAR O TOQUE */
.slider-input-acne {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
    cursor: ew-resize;
    z-index: 10;
    -webkit-appearance: none;
    margin: 0;
}

/* Linha divisória dourada */
.slider-button-acne {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--position);
    width: 2px;
    background-color: var(--brand-gold);
    z-index: 5;
    pointer-events: none;
    transform: translateX(-50%);
}

.slider-button-acne::before {
    content: '↔';
    font-family: sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: var(--brand-gold);
    color: var(--brand-green-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    border: 2px solid var(--brand-green-deep);
}

@media (max-width: 768px) {
    .slider-acne {
        max-width: 100%;
    }
}