/* =========================================
   MUNAY — TERAPEUTA METAFÍSICO
   CSS Principal — Design Premium
   ========================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta principal */
    --primary: #6b4c9a;
    --primary-dark: #4a3270;
    --primary-light: #8b6cb8;
    --primary-glow: rgba(107, 76, 154, 0.25);
    
    /* Tons neutros */
    --bg-dark: #0d0b13;
    --bg-card: #13101d;
    --bg-medium: #1a1528;
    --bg-light: #f8f7ff;
    
    /* Textos */
    --text-white: #ffffff;
    --text-light: #e8e5f0;
    --text-muted: #9b96b0;
    --text-dark: #1a1528;
    
    /* Cores de ação */
    --gold: #d4af37;
    --gold-light: #f0cf5d;
    --green: #16a34a;
    --whatsapp: #25D366;
    
    /* Tipografia */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    
    /* Espaçamentos */
    --section-py: 100px;
    --container-max: 1280px;
    
    /* Bordas */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    
    /* Sombras */
    --shadow-card: 0 8px 32px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 60px var(--primary-glow);
    --shadow-button: 0 4px 20px rgba(107, 76, 154, 0.4);
    
    /* Transições */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

em {
    font-style: italic;
    color: var(--gold-light);
    font-family: var(--font-display);
}

/* ===== BARRA DE URGÊNCIA ===== */
.urgency-bar {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-dark));
    color: white;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
    font-size: 0.875rem;
    font-weight: 500;
}

.urgency-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.urgency-content i {
    color: var(--gold-light);
    animation: pulse 1.5s infinite;
}

.urgency-timer {
    background: rgba(255,255,255,0.15);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.urgency-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    position: absolute;
    right: 16px;
    opacity: 0.7;
    transition: var(--transition);
    line-height: 1;
}

.urgency-close:hover { opacity: 1; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 11, 19, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.3rem;
}

.logo-symbol {
    color: var(--gold);
    font-size: 1.5rem;
    animation: spin-slow 6s linear infinite;
}

.logo-text {
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-links a {
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-links a:not(.nav-cta):hover { color: white; }

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 22px;
    border-radius: 50px;
    transition: var(--transition) !important;
    box-shadow: var(--shadow-button);
}

.nav-cta:hover {
    background: var(--primary-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(107, 76, 154, 0.5) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== BOTÕES GLOBAIS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: var(--shadow-button);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(107, 76, 154, 0.5);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-primary.btn-large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.5);
}

.btn-secondary-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-secondary-light:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.7);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: var(--primary-light);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid var(--primary-light);
    width: 100%;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--whatsapp);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #1ead54;
    transform: translateY(-3px);
}

/* ===== SEÇÕES - LAYOUT COMUNS ===== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    background: rgba(212, 175, 55, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.section-label.light {
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: 16px;
}

.section-title.light {
    color: white;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(ellipse at 30% 50%, rgba(107, 76, 154, 0.3) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(75, 0, 130, 0.2) 0%, transparent 50%),
                linear-gradient(180deg, #0d0b13 0%, #13101d 100%);
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle var(--duration, 8s) var(--delay, 0s) infinite;
    will-change: transform, opacity;
}

@keyframes float-particle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(107, 76, 154, 0.15) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(107, 76, 154, 0.2);
    border: 1px solid rgba(107, 76, 154, 0.4);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    color: var(--primary-light);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px #22c55e;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    color: white;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--gold);
    line-height: 1;
}

.stat-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.trust-item i {
    color: var(--gold);
    font-size: 0.8rem;
}

/* Hero Image */
.hero-image-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    min-width: 320px;
    max-width: 500px;
}

.hero-image-container {
    position: relative;
    width: 380px;
    height: 480px;
}

.hero-image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(107, 76, 154, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

.hero-avatar {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--bg-medium), var(--bg-card));
    border: 2px solid rgba(107, 76, 154, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

/* Hero com foto real */
.hero-avatar-photo {
    background: transparent;
    border: 2px solid rgba(107, 76, 154, 0.5);
    box-shadow: var(--shadow-glow), 0 0 60px rgba(107, 76, 154, 0.3);
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: var(--radius-lg);
}

.avatar-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.avatar-placeholder i {
    font-size: 120px;
    color: var(--primary-light);
    opacity: 0.7;
}

.avatar-placeholder span {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.avatar-placeholder small {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.floating-card {
    position: absolute;
    background: rgba(26, 21, 40, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(107, 76, 154, 0.3);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-card);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.3rem;
    color: #e74c6e;
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-size: 0.8rem;
    color: white;
    font-weight: 600;
}

.floating-card span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.card-1 {
    bottom: 60px;
    left: -30px;
    animation-delay: 0s;
}

.card-2 {
    top: 40px;
    right: -20px;
    animation-delay: 1.5s;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: rgba(255,255,255,0.5);
    animation: bounce-down 2s infinite;
    transition: var(--transition);
}

.hero-scroll a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Layout hero quando há dois blocos lado a lado */
.hero {
    gap: 60px;
}

/* ===== SOCIAL PROOF BAR ===== */
.social-proof-bar {
    background: var(--bg-card);
    border-top: 1px solid rgba(107, 76, 154, 0.2);
    border-bottom: 1px solid rgba(107, 76, 154, 0.2);
    padding: 28px 0;
    position: relative;
    z-index: 1;
}

.social-proof-bar .container {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-proof-bar p {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    white-space: nowrap;
}

.methods-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.method-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(107, 76, 154, 0.1);
    border: 1px solid rgba(107, 76, 154, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
}

.method-tag:hover {
    background: rgba(107, 76, 154, 0.25);
    border-color: var(--primary-light);
}

.method-tag i {
    color: var(--primary-light);
    font-size: 0.8rem;
}

/* ===== SOBRE ===== */
.sobre {
    padding: var(--section-py) 0;
    background: var(--bg-dark);
}

/* Quando sobre é o primeiro elemento após a navbar (hero removido) */
.sobre-hero {
    /* margin-top para urgency bar (~48px) + navbar (~72px) */
    padding-top: calc(48px + 72px + 40px);
    background: linear-gradient(180deg, #0d0b13 0%, var(--bg-dark) 100%);
    position: relative;
}

.sobre-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 30%, rgba(107, 76, 154, 0.18) 0%, transparent 65%);
    pointer-events: none;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.sobre-image-frame {
    position: relative;
    display: flex;
    justify-content: center;
}

.sobre-avatar {
    width: 320px;
    height: 420px;
    background: linear-gradient(145deg, var(--bg-medium), var(--bg-card));
    border-radius: var(--radius-lg);
    border: 2px solid rgba(107, 76, 154, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.sobre-avatar i {
    font-size: 140px;
    color: var(--primary-light);
    opacity: 0.6;
}

.sobre-avatar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, var(--bg-card));
}

/* Sobre com foto real */
.sobre-avatar-photo {
    background: transparent;
    border: 2px solid rgba(107, 76, 154, 0.5);
    box-shadow: var(--shadow-card), 0 0 40px rgba(107, 76, 154, 0.25);
}

.sobre-avatar-photo::before {
    background: linear-gradient(to bottom, transparent 65%, rgba(18, 12, 30, 0.7));
}

.icaro-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: var(--radius-lg);
}

/* Stats e trust badges da seção sobre-hero */
.sobre-hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.shs-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.shs-item strong {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.shs-item span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.shs-div {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.12);
}

.sobre-hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.sobre-hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
}

.sobre-hero-trust span i {
    color: var(--gold);
    font-size: 0.75rem;
}

.sobre-badge-float {
    position: absolute;
    top: 30px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 12px 18px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    box-shadow: var(--shadow-button);
}

.sobre-experience {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: linear-gradient(135deg, var(--gold), #b8860b);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.sobre-experience strong {
    display: block;
    font-size: 2rem;
    font-family: var(--font-display);
    color: var(--bg-dark);
    font-weight: 800;
    line-height: 1;
}

.sobre-experience span {
    font-size: 0.72rem;
    color: var(--bg-dark);
    font-weight: 600;
}

.sobre-text {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
    hyphens: auto;
}

.sobre-text strong {
    color: var(--text-light);
}

.sobre-credentials {
    display: grid;
    gap: 16px;
    margin: 32px 0;
}

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

.credential-icon {
    width: 44px;
    height: 44px;
    background: rgba(107, 76, 154, 0.15);
    border: 1px solid rgba(107, 76, 154, 0.3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    flex-shrink: 0;
    font-size: 1rem;
}

.credential div {
    display: flex;
    flex-direction: column;
}

.credential strong {
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 600;
}

.credential span {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 2px;
}

/* ===== DIAGNÓSTICO (LEAD CAPTURE) ===== */
.diagnostico {
    padding: var(--section-py) 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2d1b5c 50%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.diagnostico::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.diagnostico-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.diagnostico-content .section-title {
    margin-top: 12px;
}

.diagnostico-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
    font-size: 1rem;
    line-height: 1.8;
}

.diagnostico-content strong {
    color: white;
}

.diagnostico-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.diagnostico-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.diagnostico-benefits li i {
    color: #4ade80;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Quiz / Form */
.diagnostico-form-wrap {
    display: flex;
    justify-content: center;
}

.diagnostico-form {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 520px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(107, 76, 154, 0.3);
    /* Quando o resultado completo estiver ativo, permite expansão vertical */
    transition: max-width 0.3s ease;
}

/* Quando exibindo resultado completo, alarga o card e reduz padding lateral */
.diagnostico-form:has(#stepSuccess.active) {
    max-width: 560px;
    padding: 28px 24px;
}

.form-header {
    text-align: center;
    margin-bottom: 28px;
}

.form-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-button);
}

.form-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 6px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin: 0;
}

/* ===== TELAS INTERMEDIÁRIAS DO QUIZ ===== */

/* Card base das telas intermediárias */
.intermed-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(160deg, #0c0f22 0%, #11162e 60%, #0d0b1e 100%);
    border: 1px solid rgba(45, 220, 245, 0.25);
    border-radius: 18px;
    box-shadow: 0 0 32px rgba(46, 123, 246, 0.12), 0 0 0 1px rgba(45,220,245,0.08);
    min-height: 260px;
    animation: intermedFadeIn 0.5s ease;
}

@keyframes intermedFadeIn {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Orbe animada (ícone central) */
.intermed-icon {
    margin-bottom: 1.4rem;
}

.intermed-orb {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    animation: orbPulse 2.2s ease-in-out infinite;
    position: relative;
}

.intermed-orb::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    opacity: 0.35;
    animation: orbRing 2.2s ease-in-out infinite;
}

.intermed-orb--green  { background: radial-gradient(circle at 38% 38%, #39ff5a, #1bc43a); box-shadow: 0 0 22px rgba(30,211,10,0.7); }
.intermed-orb--green::after  { background: radial-gradient(circle, rgba(30,211,10,0.4), transparent 70%); }

.intermed-orb--blue   { background: radial-gradient(circle at 38% 38%, #2ddcf5, #2e7bf6); box-shadow: 0 0 22px rgba(45,220,245,0.7); }
.intermed-orb--blue::after   { background: radial-gradient(circle, rgba(45,220,245,0.4), transparent 70%); }

.intermed-orb--violet { background: radial-gradient(circle at 38% 38%, #b97dff, #7c3aed); box-shadow: 0 0 22px rgba(124,58,237,0.75); }
.intermed-orb--violet::after { background: radial-gradient(circle, rgba(180,100,255,0.4), transparent 70%); }

@keyframes orbPulse {
    0%, 100% { transform: scale(1);     box-shadow: 0 0 22px currentColor; }
    50%       { transform: scale(1.08); box-shadow: 0 0 36px currentColor; }
}

@keyframes orbRing {
    0%, 100% { transform: scale(1);    opacity: 0.35; }
    50%       { transform: scale(1.3); opacity: 0.12; }
}

/* Título das telas intermediárias */
.intermed-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: #f1c24a;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

/* Texto descritivo das telas intermediárias */
.intermed-text {
    color: rgba(230, 230, 230, 0.88);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    max-width: 340px;
}

/* Botão CONTINUAR das telas intermediárias */
.intermed-btn {
    background: linear-gradient(90deg, #2ddcf5 0%, #2e7bf6 100%);
    color: #080e1f;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2.2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(45, 220, 245, 0.35);
    transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
    position: relative;
    overflow: hidden;
}

.intermed-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.4s;
}

.intermed-btn:hover::before { left: 160%; }
.intermed-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(45, 220, 245, 0.55);
    filter: brightness(1.08);
}

/* ===== TELA DE LOADING SOFISTICADA ===== */

.loading-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.2rem 1.5rem 2rem;
    background: linear-gradient(160deg, #050816 0%, #0c0f22 55%, #0a0d1e 100%);
    border: 1px solid rgba(45, 220, 245, 0.2);
    border-radius: 20px;
    box-shadow:
        0 0 40px rgba(46, 123, 246, 0.15),
        0 0 80px rgba(124, 58, 237, 0.08),
        inset 0 0 40px rgba(45,220,245,0.03);
    animation: intermedFadeIn 0.6s ease;
    position: relative;
    overflow: hidden;
}

/* Partículas de fundo do card de loading */
.loading-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 50% 50%,
        rgba(45,220,245,0.04) 0%,
        rgba(124,58,237,0.04) 40%,
        transparent 70%);
    animation: loadingBgRotate 8s linear infinite;
    pointer-events: none;
}

@keyframes loadingBgRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Cristal / Esfera mística */
.loading-crystal {
    position: relative;
    width: 72px;
    height: 72px;
    margin-bottom: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crystal-glow {
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,0.45) 0%, transparent 70%);
    animation: crystalGlow 2.5s ease-in-out infinite;
}

@keyframes crystalGlow {
    0%, 100% { transform: scale(1);    opacity: 0.6; }
    50%       { transform: scale(1.2); opacity: 1; }
}

.crystal-icon {
    font-size: 2.6rem;
    position: relative;
    z-index: 1;
    animation: crystalFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(180,100,255,0.8));
}

@keyframes crystalFloat {
    0%, 100% { transform: translateY(0);   }
    50%       { transform: translateY(-6px); }
}

/* Título da tela de loading */
.loading-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.45rem;
    line-height: 1.3;
    position: relative;
}

/* Subtexto da tela de loading */
.loading-subtitle {
    font-size: 0.875rem;
    color: rgba(200, 200, 230, 0.65);
    margin-bottom: 1.8rem;
    position: relative;
}

/* Container da barra de progresso */
.loading-bar-wrap {
    width: 100%;
    margin-bottom: 0.65rem;
    position: relative;
}

.loading-bar-track {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.08);
    border-radius: 100px;
    overflow: hidden;
    border: 1px solid rgba(45,220,245,0.12);
}

.loading-bar-fill {
    height: 100%;
    width: 0%;
    border-radius: 100px;
    background: linear-gradient(90deg, #2e7bf6 0%, #2ddcf5 50%, #7c3aed 100%);
    box-shadow: 0 0 10px rgba(45,220,245,0.6);
    transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Efeito brilho deslizante na barra */
.loading-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
    animation: barShine 1.4s ease-in-out infinite;
}

@keyframes barShine {
    0%   { left: -100%; }
    100% { left: 200%; }
}

/* Barra quando completa */
.loading-bar-fill--done {
    background: linear-gradient(90deg, #2ddcf5 0%, #56ab8b 50%, #4ade80 100%) !important;
    box-shadow: 0 0 16px rgba(74,222,128,0.7) !important;
}

/* Porcentagem */
.loading-percent {
    display: block;
    text-align: right;
    font-size: 0.78rem;
    font-weight: 700;
    color: #2ddcf5;
    margin-top: 0.4rem;
    letter-spacing: 0.04em;
    transition: color 0.3s;
}

/* Frase dinâmica */
.loading-phrase {
    font-size: 0.82rem;
    color: rgba(180, 210, 255, 0.75);
    margin-top: 1rem;
    min-height: 1.4rem;
    transition: opacity 0.3s ease;
    letter-spacing: 0.01em;
    position: relative;
}

/* Botão VER RESULTADO (aparece após 100%) */
.loading-reveal-btn {
    display: none;
    opacity: 0;
    margin-top: 1.5rem;
    padding: 0.85rem 2.5rem;
    background: linear-gradient(90deg, #2e7bf6 0%, #2ddcf5 100%);
    color: #060c1e;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 24px rgba(45,220,245,0.5), 0 4px 16px rgba(46,123,246,0.4);
    transition: opacity 0.6s ease, transform 0.2s ease, box-shadow 0.2s ease;
    animation: revealBtnPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.loading-reveal-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.loading-reveal-btn:hover::before { left: 160%; }

.loading-reveal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 36px rgba(45,220,245,0.7), 0 6px 24px rgba(46,123,246,0.5);
}

@keyframes revealBtnPulse {
    0%, 100% { box-shadow: 0 0 24px rgba(45,220,245,0.5), 0 4px 16px rgba(46,123,246,0.4); }
    50%       { box-shadow: 0 0 40px rgba(45,220,245,0.8), 0 6px 24px rgba(46,123,246,0.6); }
}

/* Quiz Steps */
.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.quiz-question {
    font-size: 1rem;
    font-weight: 700;
    color: #f5d130;
    text-shadow: 0 0 18px rgba(245, 209, 48, 0.25);
    margin-bottom: 20px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 4px;
    line-height: 1.5;
}

.quiz-question .q-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background: rgba(245, 209, 48, 0.18);
    border: 1px solid rgba(245, 209, 48, 0.45);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
    color: #f5d130;
    margin-right: 6px;
    flex-shrink: 0;
    margin-top: 2px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quiz-opt {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(107, 76, 154, 0.1);
    border: 1px solid rgba(107, 76, 154, 0.25);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    color: var(--text-light);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    font-family: var(--font-body);
}

.quiz-opt:hover {
    background: rgba(107, 76, 154, 0.25);
    border-color: var(--primary-light);
    color: white;
    transform: translateX(4px);
}

.quiz-opt i {
    color: var(--primary-light);
    width: 20px;
    text-align: center;
}

/* Botão voltar do quiz */
.quiz-nav {
    display: flex;
    justify-content: flex-start;
    margin-top: 12px;
}

.quiz-back-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-md);
    padding: 8px 14px;
    color: var(--text-muted);
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.quiz-back-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
}

/* Animação suave das perguntas */
.quiz-step {
    transition: opacity 0.3s ease;
}

#step1 {
    transition: opacity 0.25s ease;
}

/* Número da pergunta */
.q-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 700;
    margin-right: 8px;
    flex-shrink: 0;
}

/* Lead Form */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: var(--primary-light);
}

.form-group input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(107, 76, 154, 0.3);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--text-white);
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary-light);
    background: rgba(107, 76, 154, 0.1);
    box-shadow: 0 0 0 3px rgba(107, 76, 154, 0.2);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.btn-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
    box-shadow: var(--shadow-button);
}

.btn-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(107, 76, 154, 0.5);
}

.form-privacy {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-privacy i {
    color: #4ade80;
}

/* Quiz Progress */
.quiz-progress {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-bar {
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    height: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    border-radius: 50px;
    transition: width 0.5s ease;
    width: 33%;
}

#progressText {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
}

/* Success */
.success-message {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    font-size: 4rem;
    color: #4ade80;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.success-message h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: white;
    margin-bottom: 12px;
}

.success-message p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Número da pergunta */
.q-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 700;
    margin-right: 8px;
    flex-shrink: 0;
}

/* Resultado do diagnóstico */
.result-content {
    text-align: left;
    margin: 16px 0;
}

.result-block-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 700;
}

.result-text {
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
    line-height: 1.7;
    margin: 8px 0 0;
}

.result-therapy {
    margin-top: 16px;
}

.therapy-recommendation {
    background: rgba(107,76,154,0.15);
    border: 1px solid rgba(107,76,154,0.4);
    border-radius: 10px;
    padding: 14px 16px;
    text-align: left;
}

.therapy-label {
    font-size: 0.72rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 6px;
}

.therapy-name {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.therapy-name i {
    color: var(--primary-light);
    margin-right: 6px;
}

.therapy-cta-text {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* ===== RESULTADO COMPLETO DO QUIZ (rq-*) ===== */
.rq-result-wrapper {
    text-align: left;
    padding: 0;
}

.rq-main-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: white;
    text-align: center;
    margin-bottom: 1.25rem;
    line-height: 1.45;
}

.rq-main-title em {
    color: var(--gold);
    font-style: italic;
}

/* Cabeçalho do resultado */
.rq-header {
    text-align: center;
    padding: 1rem 0 1.25rem;
    border-bottom: 1px solid rgba(78,205,196,0.2);
    margin-bottom: 0;
}

.rq-emoji {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.rq-profile-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.rq-profile-sub {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    font-style: italic;
}

/* Seções do resultado */
.rq-section {
    padding: 1.1rem 0;
}

.rq-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(78,205,196,0.25), transparent);
    margin: 0;
}

.rq-section-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    letter-spacing: 0.01em;
}

.rq-section-title.gold { color: var(--gold); }
.rq-section-title.cyan { color: #4ecdc4; }

.rq-text {
    color: rgba(255,255,255,0.82);
    font-size: 0.865rem;
    line-height: 1.75;
    margin-bottom: 0.6rem;
}

.rq-text:last-child { margin-bottom: 0; }

/* Listas */
.rq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rq-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: rgba(255,255,255,0.88);
    font-size: 0.85rem;
    line-height: 1.55;
    padding: 4px 0;
}

.rq-list li i {
    flex-shrink: 0;
    margin-top: 3px;
}

.rq-dot { font-size: 0.35rem !important; margin-top: 6px !important; }
.rq-warn { font-size: 0.72rem !important; }
.rq-arrow { font-size: 0.68rem !important; margin-top: 4px !important; }
.rq-coin { font-size: 0.72rem !important; }
.rq-leaf { font-size: 0.72rem !important; }
.rq-check { font-size: 0.78rem !important; }

/* Seção Como o Terapeuta Ajuda */
.rq-como-ajuda {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(78,205,196,0.18);
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1rem 0;
}

/* Acordeões de terapias */
.rq-accordions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rq-accordion {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
}

.rq-accordion:hover {
    border-color: rgba(245,209,48,0.35);
}

.rq-acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0.9rem;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--gold);
    gap: 8px;
}

.rq-acc-icon {
    flex-shrink: 0;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    transition: transform 0.25s;
}

.rq-accordion.open .rq-acc-icon {
    transform: rotate(180deg);
}

.rq-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.2s;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
    padding: 0 0.9rem;
}

.rq-accordion.open .rq-acc-body {
    max-height: 200px;
    padding: 0 0.9rem 0.75rem;
}

.rq-disclaimer {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.6;
    font-style: italic;
}

/* CTA Final */
.rq-cta-box {
    background: linear-gradient(135deg, rgba(107,76,154,0.25), rgba(74,50,112,0.3));
    border: 1px solid rgba(107,76,154,0.45);
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1rem 0;
    text-align: center;
}

.rq-cta-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.rq-cta-sub {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.rq-sessao-box {
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 1rem;
    text-align: left;
    margin-bottom: 0.25rem;
}

.rq-sessao-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.rq-sessao-title.cyan { color: #4ecdc4; }

.rq-sessao-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

.rq-sessao-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rq-sessao-info span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 6px;
}

.rq-sessao-info span i {
    color: #4ecdc4;
    width: 14px;
}

/* Botão WhatsApp do resultado */
.rq-wpp-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 1.25rem;
    padding: 0.9rem 1.5rem;
    background: #25D366;
    color: white;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.rq-wpp-btn:hover {
    background: #1ebe5a;
    transform: translateY(-1px);
    color: white;
}

/* Botão Refazer */
.rq-refazer-btn {
    display: block;
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    text-align: center;
}

.rq-refazer-btn:hover {
    border-color: rgba(255,255,255,0.5);
    color: white;
}

/* Trust badges no diagnóstico */
.diagnostico-trust {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.diag-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.07);
    padding: 6px 12px;
    border-radius: 20px;
}

.diag-trust-item i {
    color: var(--gold);
    font-size: 0.75rem;
}

/* ===== SERVIÇOS ===== */
.servicos {
    padding: var(--section-py) 0;
    background: var(--bg-medium);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.servico-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
}

.servico-card:hover {
    border-color: rgba(107, 76, 154, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px rgba(107, 76, 154, 0.1);
}

.servico-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.servico-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: white;
    margin-bottom: 12px;
    font-weight: 600;
}

.servico-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
    hyphens: auto;
}

.servico-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.servico-tag.gratis {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border-color: rgba(34, 197, 94, 0.3);
}

.servico-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.servico-link:hover {
    color: var(--gold-light);
    gap: 12px;
}

/* ===== OFERTA ===== */
.oferta {
    padding: var(--section-py) 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.oferta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(107, 76, 154, 0.15) 0%, transparent 70%);
}

.oferta-container {
    background: linear-gradient(145deg, var(--bg-card), var(--bg-medium));
    border: 1px solid rgba(107, 76, 154, 0.3);
    border-radius: var(--radius-xl);
    padding: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-card), 0 0 80px rgba(107, 76, 154, 0.15);
}

.oferta-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), #b8860b);
    color: var(--bg-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.oferta-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 12px;
}

.oferta-subtitle {
    color: var(--text-muted);
    margin-bottom: 48px;
    font-size: 1rem;
}

.oferta-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: start;
    text-align: left;
}

.oferta-includes h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.oferta-includes h3 i {
    color: #4ade80;
}

.oferta-includes ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.oferta-includes li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.5;
}

.oferta-includes li i {
    color: #4ade80;
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.oferta-includes li strong {
    color: var(--text-light);
}

/* Price Box */
.oferta-price-box {
    background: rgba(107, 76, 154, 0.1);
    border: 1px solid rgba(107, 76, 154, 0.3);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

.oferta-de {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.oferta-de s {
    color: #ef4444;
}

.oferta-por {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.oferta-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 4px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-top: 8px;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-display);
    color: white;
    line-height: 1;
}

.oferta-parcel {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.oferta-spots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--gold);
    margin-bottom: 20px;
    background: rgba(212, 175, 55, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.oferta-spots i {
    animation: pulse 1.5s infinite;
}

.oferta-price-box .btn-primary {
    width: 100%;
    justify-content: center;
    margin-bottom: 16px;
}

.oferta-security {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.oferta-security div {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.oferta-security i {
    color: var(--primary-light);
}

/* ===== PLANOS ===== */
.planos {
    padding: var(--section-py) 0;
    background: var(--bg-medium);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    align-items: start;
}

.plano-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    transition: var(--transition);
}

.plano-card:hover {
    border-color: rgba(107, 76, 154, 0.4);
    transform: translateY(-4px);
}

.plano-card.destaque {
    border-color: var(--primary);
    background: linear-gradient(145deg, rgba(107, 76, 154, 0.15), var(--bg-card));
    box-shadow: 0 0 40px rgba(107, 76, 154, 0.2);
    transform: scale(1.03);
}

.plano-card.destaque:hover {
    transform: scale(1.03) translateY(-4px);
}

.plano-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 50px;
    white-space: nowrap;
}

.plano-header {
    text-align: center;
    margin-bottom: 24px;
}

.plano-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-button);
}

.plano-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: white;
    margin-bottom: 6px;
}

.plano-header p {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.plano-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 28px;
}

.plano-cifra {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-top: 6px;
}

.plano-valor {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: var(--font-display);
    color: white;
    line-height: 1;
}

.plano-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.plano-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-light);
}

.plano-features li i.fa-check {
    color: #4ade80;
    width: 16px;
}

.plano-features li i.fa-times {
    color: rgba(255,255,255,0.2);
    width: 16px;
}

.plano-features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.plano-card .btn-primary {
    width: 100%;
    justify-content: center;
}

/* Clube Munay */
.clube-munay {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(107, 76, 154, 0.15));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.clube-content {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    flex-wrap: wrap;
}

.clube-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold), #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-dark);
    flex-shrink: 0;
    margin-top: 4px;
}

.clube-info {
    flex: 1;
    min-width: 220px;
}

.clube-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.clube-subtitulo {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.clube-descricao {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.clube-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.clube-benefits li {
    color: var(--text-light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.clube-benefits li i {
    color: var(--gold);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.clube-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    white-space: nowrap;
    text-align: center;
    margin-top: 4px;
}

.clube-price span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.clube-price strong {
    font-size: 1.6rem;
    font-family: var(--font-display);
    color: var(--gold);
}

.clube-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    min-width: 200px;
}

.btn-clube {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
    text-align: center;
}

.btn-clube-primary {
    background: linear-gradient(135deg, var(--gold), #b8860b);
    color: var(--bg-dark);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
}

.btn-clube-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.55);
    filter: brightness(1.08);
}

.btn-clube-secondary {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    font-weight: 600;
    font-size: 0.85rem;
}

.btn-clube-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .clube-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .clube-benefits li {
        justify-content: center;
    }
    .clube-actions {
        width: 100%;
    }
    .clube-info {
        text-align: center;
    }
}

/* ===== RESULTADOS / DEPOIMENTOS ===== */
.resultados {
    padding: var(--section-py) 0;
    background: var(--bg-dark);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.depoimento-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
}

.depoimento-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: var(--font-display);
    line-height: 1;
}

.depoimento-card:hover {
    border-color: rgba(107, 76, 154, 0.4);
    transform: translateY(-4px);
}

.depo-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.depo-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.depo-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
}

.depo-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.depo-author div {
    display: flex;
    flex-direction: column;
}

.depo-author strong {
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
}

.depo-author span {
    font-size: 0.75rem;
    color: var(--primary-light);
}

.resultados-cta {
    text-align: center;
}

.resultados-cta p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* ===== LIVRO ===== */
.livro {
    padding: var(--section-py) 0;
    background: var(--bg-medium);
}

.livro-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.livro-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.livro-cover {
    perspective: 1000px;
}

.livro-capa {
    width: 240px;
    height: 340px;
    border-radius: 4px 12px 12px 4px;
    display: flex;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.5), -8px -8px 30px rgba(107, 76, 154, 0.2);
    transform: rotateY(-15deg);
    transition: var(--transition);
    cursor: pointer;
}

.livro-capa:hover {
    transform: rotateY(-5deg);
    box-shadow: 30px 20px 80px rgba(0,0,0,0.5), -8px -8px 30px rgba(107, 76, 154, 0.3);
}

.livro-spine {
    width: 24px;
    background: linear-gradient(180deg, #3a2464, #1e0e3a);
    border-radius: 4px 0 0 4px;
    flex-shrink: 0;
}

.livro-front {
    flex: 1;
    background: linear-gradient(145deg, #1e0e3a, #4a2472, #1e0e3a);
    border-radius: 0 8px 8px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.livro-front::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
}

.livro-symbol {
    font-size: 2.5rem;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

.livro-front h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: white;
    text-align: center;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.livro-front p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    position: relative;
    z-index: 1;
}

.livro-front-img {
    padding: 0;
    background: none;
    overflow: hidden;
}

.livro-front-img::before {
    display: none;
}

.livro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 8px 8px 0;
    display: block;
}

.livro-badge-float {
    position: absolute;
    top: 20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 14px 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    box-shadow: var(--shadow-button);
    font-size: 0.82rem;
    line-height: 1.3;
}

.livro-badge-float i {
    font-size: 1.4rem;
    color: var(--gold-light);
}

.livro-badge-float span {
    font-weight: 700;
}

.livro-desc {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 1rem;
}

.livro-desc strong {
    color: var(--text-light);
}

.livro-beneficios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0;
}

.livro-ben {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-light);
}

.livro-ben i {
    color: var(--gold);
    font-size: 0.9rem;
}

.livro-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.livro-price-note {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq {
    padding: var(--section-py) 0;
    background: var(--bg-dark);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(107, 76, 154, 0.3);
}

.faq-item.active {
    border-color: rgba(107, 76, 154, 0.5);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
    text-align: left;
    gap: 16px;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-question i {
    color: var(--primary-light);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    font-size: 0.88rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ===== CTA FINAL ===== */
.cta-final {
    padding: var(--section-py) 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e0e3a 50%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(107, 76, 154, 0.2) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 24px;
    display: block;
    animation: pulse 2s infinite;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-trust {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.cta-trust i {
    color: var(--gold);
}

/* ===== FOOTER ===== */
.footer {
    background: #060408;
    padding: 80px 0 32px;
    border-top: 1px solid rgba(107, 76, 154, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer-logo .logo-symbol {
    color: var(--gold);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-contact h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
}

.contact-item i {
    color: var(--primary-light);
    margin-top: 2px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item a {
    color: var(--text-muted);
    transition: var(--transition);
}

.contact-item a:hover { color: var(--primary-light); }

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

.btn-whatsapp-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--whatsapp);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 8px;
    transition: var(--transition);
}

.btn-whatsapp-footer:hover {
    background: #1ead54;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.footer-disclaimer {
    margin-top: 8px;
    opacity: 0.6;
    font-size: 0.78rem !important;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 900;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: float 4s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.wpp-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(0,0,0,0.85);
    color: white;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .wpp-tooltip {
    opacity: 1;
}

/* ===== POPUP ===== */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.popup-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.popup-box {
    background: var(--bg-card);
    border: 1px solid rgba(107, 76, 154, 0.4);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 80px rgba(0,0,0,0.5), 0 0 60px rgba(107, 76, 154, 0.2);
    animation: slideUp 0.4s ease;
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.6rem;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.popup-close:hover { color: white; }

.popup-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.popup-box h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: white;
    margin-bottom: 14px;
}

.popup-box p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.popup-box strong {
    color: var(--text-light);
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popup-form input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(107, 76, 154, 0.3);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: white;
    font-size: 0.95rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

.popup-form input:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(107, 76, 154, 0.2);
}

.popup-form input::placeholder { color: var(--text-muted); }

.popup-form .btn-primary {
    justify-content: center;
}

.popup-privacy {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}

.popup-privacy i { color: #4ade80; }

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== PERFORMANCE — will-change nos elementos animados ===== */
.navbar { will-change: transform; }
.quiz-step.active { will-change: opacity; }

/* ===== ACESSIBILIDADE & PERFORMANCE — respeita preferência do usuário ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .particle { display: none; }
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== MOBILE — desativa partículas e animações pesadas para melhor performance ===== */
@media (max-width: 768px) {
    .hero-particles { display: none; }
    .logo-symbol { animation: none; }
    .urgency-content i { animation: none; }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
    :root { --section-py: 80px; }
    
    .hero { flex-direction: column; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-stats { justify-content: center; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-image-wrap { width: 100%; max-width: 360px; }
    
    .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
    .sobre-image-col { order: -1; }
    .sobre-image-frame { margin: 0 auto; }
    
    .diagnostico-grid { grid-template-columns: 1fr; gap: 48px; }
    .servicos-grid { grid-template-columns: repeat(2, 1fr); }
    .planos-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 40px; }
    .plano-card.destaque { transform: scale(1); }
    .plano-card.destaque:hover { transform: translateY(-4px); }
    
    .oferta-grid { grid-template-columns: 1fr; }
    
    .depoimentos-grid { grid-template-columns: repeat(2, 1fr); }
    
    .livro-grid { grid-template-columns: 1fr; gap: 48px; }
    .livro-visual { order: -1; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    :root { --section-py: 60px; }
    
    .navbar { padding: 16px 0; }
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: rgba(13, 11, 19, 0.98);
        z-index: 998;
        justify-content: center;
        align-items: center;
        gap: 40px;
        font-size: 1.2rem;
    }
    .nav-toggle { display: flex; z-index: 999; }
    
    .urgency-bar { padding: 8px 16px; font-size: 0.78rem; }
    .urgency-timer { display: none; }
    
    .servicos-grid { grid-template-columns: 1fr; }
    .depoimentos-grid { grid-template-columns: 1fr; }
    
    .oferta-container { padding: 36px 24px; }
    
    .clube-content { flex-direction: column; text-align: center; }
    
    .hero-image-wrap { display: none; }
    
    .footer-grid { grid-template-columns: 1fr; }
    
    .livro-beneficios { grid-template-columns: 1fr; }
    
    .livro-capa { transform: none; width: 200px; height: 280px; }
    
    .whatsapp-float { bottom: 24px; right: 24px; width: 52px; height: 52px; font-size: 1.5rem; }
    
    .sobre-avatar { width: 240px; height: 320px; }
    
    .popup-box { padding: 36px 24px; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions a { text-align: center; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .btn-primary.btn-large { width: 100%; justify-content: center; }
    .oferta-title { font-size: 1.8rem; }
    .diagnostico-form { padding: 24px 20px; }
}
