/* =========================================
   1. CONFIGURAÇÕES GERAIS (RESET)
   ========================================= */
:root {
    /* --- PALETA FINAL: BLACK & GOLD (RAL CLINIC) --- */
    --primary-color: #111111; /* Preto Profundo (Base) */
    --accent-color: #bf9b50;  /* Dourado Metálico (Logo) */
    --dark-bg: #1a1a1a;       /* Cinza Chumbo (App Style) */

    --text-dark: #222222;
    --text-light: #666666;
    --white: #ffffff;
    --light-gray: #f8f9fa; 
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- UTILITÁRIO: Quebra de linha apenas no mobile --- */
/* Isso esconde o <br class="mobile-break"> no computador */
.mobile-break {
    display: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--accent-color);
}

/* =========================================
   2. BOTÕES (CTA)
   ========================================= */
.btn-primary {
    display: inline-block;
    background-color: #25d366; 
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    text-align: center;
}

.btn-primary:hover {
    background-color: #1ebc57;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-primary small {
    display: block;
    font-size: 0.7em;
    font-weight: 400;
    opacity: 0.9;
    text-transform: none;
    margin-top: 3px;
}

.pulsate {
    animation: pulsate 2s infinite;
}

@keyframes pulsate {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn-secondary {
    display: inline-block;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 20px;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--accent-color); 
    border-color: var(--primary-color);
}

/* =========================================
   3. CABEÇALHO (HEADER) - AGORA PRETO
   ========================================= */
header {
    background-color: #000000; /* Preto Absoluto para fundir com a Logo */
    box-shadow: 0 2px 15px rgba(0,0,0,0.5);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px; /* Aumentei levemente para caber a logo com respiro */
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* CONFIGURAÇÃO DA IMAGEM DA LOGO */
.logo-img {
    height: 55px; /* Altura ideal para Desktop */
    width: auto;
    object-fit: contain;
    display: block;
}

header nav a {
    color: var(--white); /* Texto Branco para aparecer no fundo Preto */
    margin-left: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

header nav a:hover {
    color: var(--accent-color); /* Fica Dourado ao passar o mouse */
}

header .btn-nav {
    background-color: var(--accent-color); /* Botão Dourado */
    color: #000000; /* Texto Preto */
    padding: 8px 20px;
    border-radius: 30px;
    border: none;
    font-weight: 700;
}

header .btn-nav:hover {
    background-color: var(--white);
    color: #000000;
}

/* =========================================
   4. HERO SECTION (CAPA)
   ========================================= */
.hero {
    /* Gradiente Preto Profundo para garantir leitura */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.7)), url('../img/bg-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 0; 
}

.hero-content {
    max-width: 800px;
}

.hero .tag {
    background-color: var(--accent-color);
    color: #111;
    padding: 6px 18px;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    display: inline-block;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 400;
}

/* =========================================
   5. SEÇÃO PROBLEMA / BENEFÍCIOS
   ========================================= */
.pain-points {
    padding: 80px 0;
    background-color: var(--white);
}

.pain-points h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.pain-points .subtitle {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.grid-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.benefit-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-bottom: 3px solid var(--accent-color);
    transform: translateY(-5px);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary-color);
}

/* =========================================
   6. SEÇÃO AUTORIDADE (ALLAN)
   ========================================= */
.authority {
    padding: 80px 0;
    background-color: var(--light-gray);
}

/* No desktop, esconde o título mobile */
.authority-header-mobile {
    display: none; 
}

.grid-authority {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.auth-img img {
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.auth-text .pre-title {
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.auth-text h2 {
    font-size: 2.5rem;
    margin: 10px 0 20px 0;
}

.auth-text blockquote {
    border-left: 4px solid var(--accent-color);
    background: #e9ecef;
    padding: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #333;
    font-weight: 600;
    border-radius: 0 8px 8px 0;
}

.credentials {
    margin-top: 20px;
}

.credentials li {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

/* =========================================
   7. GALERIA (ESTILOS)
   ========================================= */
.gallery {
    padding: 80px 0;
    text-align: center;
}

.subtitle-box {
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #555;
    font-size: 1.1rem;
}
.subtitle-box p {
    margin-bottom: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.photo-card {
    background-color: #ddd;
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: #777;
    font-weight: bold;
    overflow: hidden;
    position: relative;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.photo-card:hover img {
    transform: scale(1.05);
}

/* =========================================
   8. SEÇÃO SÓCIOS (PREMIUM)
   ========================================= */
.partners {
    padding: 80px 0;
    background-color: var(--white);
}

.partners-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.partners-header .pre-title {
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.partners-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.partners-header .intro-text {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.socios-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.socio-card {
    display: flex;
    flex-direction: column;
}

.socio-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    filter: grayscale(20%); 
}

.socio-card:hover .socio-img img {
    transform: translateY(-5px);
    filter: grayscale(0%);
}

.socio-bio {
    border-left: 3px solid var(--accent-color);
    padding-left: 20px;
}

.socio-bio h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.socio-bio .role {
    color: var(--accent-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    margin-top: 5px;
}

.partners-footer-text {
    text-align: center;
    margin-top: 60px;
}

.final-statement {
    font-weight: 700;
    color: var(--primary-color);
    font-style: italic;
    border-top: 1px solid #eee;
    padding-top: 30px;
    display: inline-block;
    max-width: 700px;
}

/* =========================================
   9. SEÇÃO DESTAQUE (BLACK & GOLD STYLE)
   ========================================= */
.cta-highlight {
    padding: 80px 0;
    background: linear-gradient(135deg, #111111 0%, #2c2c2c 100%);
    color: var(--white);
    overflow: hidden;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.tag-highlight {
    background-color: var(--accent-color);
    color: #111;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.8rem;
    margin-bottom: 15px;
    display: inline-block;
}

.cta-text h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text p {
    color: #e0e0e0;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.phone-mockup {
    width: 300px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.8)); 
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* =========================================
   10. SEÇÃO DEPOIMENTOS
   ========================================= */
.testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.header-review {
    text-align: center;
    margin-bottom: 50px;
}

.google-badge {
    display: inline-block;
    margin-top: 10px;
}

.google-badge .stars {
    color: #f1c40f; 
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #eee;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

.user-avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid #eee;
}

.user-info h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.user-info .stars {
    color: #f1c40f;
    font-size: 0.9rem;
}

.review-card p {
    font-size: 0.95rem;
    color: #555;
    font-style: italic;
}

/* =========================================
   11. FAQ - VISUAL DARK
   ========================================= */
.faq {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.faq h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid var(--accent-color);
}

.faq-item h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.faq-item p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

/* =========================================
   12. RODAPÉ (BLACK)
   ========================================= */
footer {
    padding: 60px 0 20px 0;
    background-color: #000000;
    color: var(--white);
    text-align: center;
    border-top: 1px solid #222;
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.final-cta p {
    margin-bottom: 30px;
    color: #aaa;
}

.copyright {
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.8rem;
    color: #666;
}

.official-data p {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
}

.dev-credits {
    margin-top: 20px;
    font-size: 0.85rem;
}

.dev-contacts {
    margin-top: 5px;
}

.dev-contacts a {
    color: #888;
    margin: 0 10px;
    transition: 0.3s;
}

.dev-contacts a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

/* =========================================
   13. RESPONSIVIDADE (CELULAR) - VERSÃO DEFINITIVA
   ========================================= */
@media (max-width: 768px) {
    
    /* Ativa a quebra de linha da tag no celular */
    .mobile-break {
        display: block; 
    }

    /* 1. Header e Logo Compactos */
    header { height: 60px; }
    header .container { padding: 0 15px; }
    .logo-img { height: 35px; }
    header .btn-nav { display: none; }

    /* 2. Hero Section */
    .hero {
        margin-top: 0; 
        min-height: auto; 
        height: auto;
        
        /* Topo: 85px (Passa logo abaixo do menu) */
        /* Base: 60px (Espaço para o botão respirar) */
        padding: 85px 0 60px 0; 
        
        display: block; 
    }
    
    .hero-content {
        width: 100%;
    }

    /* TAG AUMENTADA E AJUSTADA */
    .hero .tag {
        margin-bottom: 15px;
        font-size: 0.85rem; /* Aumentado para leitura */
        line-height: 1.5;   /* Espaço entre as duas linhas da tag */
        padding: 8px 15px;  /* Tag mais encorpada */
        display: inline-block;
        width: 90%;         /* Garante que não estoure a tela */
    }

    /* TÍTULO (Tamanho Médio/Ideal) */
    .hero h1 { 
        font-size: 2.2rem; 
        line-height: 1.25; 
        margin-bottom: 15px; 
    }
    
    /* Oculta as quebras manuais do H1 se necessário, mas aqui mantemos */
    .hero h1 br {
        display: block;
    }
    
    .hero p {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 30px; 
        padding: 0 5px;
    }

    /* Botão WhatsApp */
    .btn-primary {
        padding: 14px 25px;
        font-size: 0.9rem;
        width: 100%; 
        margin-bottom: 10px; 
    }

    /* 3. Ajustes Gerais */
    h2 { font-size: 1.8rem; }
    .grid-authority { display: flex; flex-direction: column; gap: 30px; }
    .authority-header-mobile { display: block; text-align: center; margin-bottom: 30px; }
    .authority-header-desktop { display: none; }
    .auth-text h2 { font-size: 1.8rem; }
    .partners-header { text-align: left; margin-bottom: 40px; }
    .partners-header h2 { font-size: 2rem; }
    .socios-wrapper { grid-template-columns: 1fr; gap: 60px; }
    .socio-img img { height: 400px; } 
    .socio-bio { border-left: none; border-top: 3px solid var(--accent-color); padding-left: 0; padding-top: 15px; }
    .cta-grid { grid-template-columns: 1fr; text-align: center; }
    .phone-mockup { width: 100%; max-width: 260px; }
}

/* =========================================
   14. BOTÃO FLUTUANTE DO WHATSAPP
   ========================================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebc57;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
}

/* =========================================
   15. EFEITOS JAVASCRIPT
   ========================================= */

/* --- 1. Header Inteligente --- */
header {
    background-color: transparent !important; 
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

header.scrolled {
    background-color: #000000 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

/* --- 2. FAQ Interativo (Sanfona) --- */
.faq-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h3::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    content: '-'; 
    transform: rotate(180deg);
}

.faq-item p {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
    margin-top: 0;
}

.faq-item.active p {
    max-height: 300px; 
    opacity: 1;
    margin-top: 15px;
}

.faq-item.active {
    background-color: rgba(255, 255, 255, 0.1); 
    border-left: 5px solid #fff; 
}

/* --- 3. Scroll Reveal (Animação de Entrada) --- */
.reveal {
    opacity: 0;
    transform: translateY(50px); 
    transition: all 1s ease; 
}

.reveal.active {
    opacity: 1;
    transform: translateY(0); 
}

/* =========================================
   NOVAS SEÇÕES: PRIVACIDADE & VISAGISMO
   ========================================= */

/* --- SEÇÃO PRIVACIDADE (DARK) --- */
.privacy-section {
    padding: 80px 0;
    background-color: #111; /* Fundo Preto para sensação de "Escondido/Vip" */
    color: #fff;
    overflow: hidden;
}

.grid-privacy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.privacy-text h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.privacy-text p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.privacy-list li {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #eee;
    display: flex;
    flex-direction: column;
}

.privacy-list strong {
    color: var(--accent-color); /* Dourado */
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* Moldura da Imagem da Sala */
.privacy-img {
    position: relative;
}

.img-frame {
    border-radius: 10px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    /* Filtro para aquecer a foto fria */
    filter: sepia(20%) contrast(110%); 
    transition: transform 0.3s ease;
}

.img-frame:hover {
    filter: sepia(0%) contrast(100%); /* Fica original ao passar o mouse */
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--accent-color);
    color: #000;
    padding: 15px 25px;
    font-weight: 800;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* --- SEÇÃO VISAGISMO (LIGHT) - ATUALIZADA PARA ÍCONES --- */
.visagism-section {
    padding: 80px 0;
    background-color: #fff;
}

.visagism-header {
    margin-bottom: 50px;
}

.grid-visagism {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.visagism-card {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    padding-bottom: 20px;
    text-align: center;
}

.visagism-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

/* ESTILO DOS ÍCONES (NOVO) */
.icon-box {
    height: 120px; /* Altura fixa para alinhar */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fdfdfd;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.icon-box svg {
    width: 60px;
    height: 60px;
    stroke: var(--accent-color); /* Usa a cor Dourada */
    transition: transform 0.3s ease;
}

.visagism-card:hover .icon-box svg {
    transform: scale(1.15); /* Efeito de zoom no ícone */
}

.visagism-card h3 {
    margin: 20px 0 10px 0;
    font-size: 1.2rem;
    color: var(--primary-color);
    padding: 0 15px;
}

.visagism-card p {
    font-size: 0.95rem;
    color: #666;
    padding: 0 20px;
}

/* Card Especial de Aprovação (Dark) */
.highlight-card {
    background-color: #111;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Alinhamento corrigido */
    align-items: stretch;
    border: 1px solid #333;
}

.highlight-card .icon-box {
    background-color: transparent; /* Fundo transparente */
    border-bottom: none;
    margin-top: 20px;
}

.highlight-card h3 {
    color: #fff;
}

.highlight-card p {
    color: #ccc;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .grid-privacy {
        grid-template-columns: 1fr;
    }
    
    .floating-badge {
        right: 10px;
        bottom: 10px;
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* =========================================
   POP-UP PROVA SOCIAL (NOTIFICAÇÃO)
   ========================================= */
.social-proof-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: rgba(17, 17, 17, 0.95); /* Preto quase sólido */
    border: 1px solid var(--accent-color); /* Borda Dourada */
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 9999;
    max-width: 320px;
    
    /* Estado inicial (escondido) */
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Efeito elástico */
    pointer-events: none;
}

.social-proof-popup.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.proof-icon {
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.proof-content p {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.2;
}

.proof-content span {
    display: block;
    color: #ccc;
    font-size: 0.8rem;
    margin-top: 2px;
}

.proof-content small {
    color: var(--accent-color);
    font-size: 0.7rem;
    font-weight: 700;
}

.close-proof {
    position: absolute;
    top: 5px;
    right: 8px;
    color: #555;
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 0.8;
}

.close-proof:hover {
    color: #fff;
}

/* Esconder no celular se atrapalhar muito (Opcional) */
@media (max-width: 480px) {
    .social-proof-popup {
        bottom: 80px; /* Sobe um pouco por causa do botão do WhatsApp */
        left: 50%;
        transform: translateX(-50%) translateY(20px); /* Centraliza */
        width: 90%;
    }
    
    .social-proof-popup.active {
        transform: translateX(-50%) translateY(0);
    }
}

/* Delay para os cards de Visagismo aparecerem em escadinha */
.visagism-card:nth-child(1) { transition-delay: 0.1s; }
.visagism-card:nth-child(2) { transition-delay: 0.3s; }
.visagism-card:nth-child(3) { transition-delay: 0.5s; }