/* ============================================
   ORIGEM ASTRAL - ESTILOS PRINCIPAIS
   Design místico, moderno e responsivo
   ============================================ */

/* Reset e Variáveis */
:root {
    --cor-primaria: #8B5CF6;
    --cor-secundaria: #6B21A8;
    --cor-destaque: #F59E0B;
    --cor-texto: #1F2937;
    --cor-texto-claro: #6B7280;
    --cor-fundo: #0F172A;
    --cor-fundo-claro: #1E293B;
    --cor-branco: #FFFFFF;
    --cor-dourado: #FBBF24;
    --cor-lilas: #E9D5FF;
    --sombra: 0 10px 30px rgba(139, 92, 246, 0.3);
    --sombra-hover: 0 15px 40px rgba(139, 92, 246, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--cor-texto);
    background: var(--cor-fundo);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ============================================
   CABEÇALHO
   ============================================ */
.header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    padding: 1.25rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.logo {
    flex-shrink: 0;
    margin-right: 2rem;
}

.logo h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-dourado));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.logo a {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    font-family: 'Inter', sans-serif;
    color: var(--cor-branco);
    text-decoration: none;
    font-size: 0.90rem;
    transition: color 0.3s;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Botão Voltar ao Início - Header páginas legais */
.btn-voltar-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    color: var(--cor-primaria) !important;
    font-size: 0.85rem !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-voltar-header:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--cor-primaria);
    transform: translateX(-3px);
}

.btn-voltar-header svg {
    transition: transform 0.3s ease;
}

.btn-voltar-header:hover svg {
    transform: translateX(-3px);
}

.nav-menu a:hover {
    color: var(--cor-primaria);
}

.btn-cta-menu {
    position: relative;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: var(--cor-branco);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    overflow: visible;
    z-index: 1;
    
    /* Gradiente animado */
    background: linear-gradient(90deg, 
        #8B5CF6 0%, 
        #A855F7 25%, 
        #D4AF37 50%, 
        #F59E0B 75%, 
        #8B5CF6 100%
    );
    background-size: 300% 100%;
    animation: gradientShiftMenu 4s ease infinite;
    
    /* Sombra glow */
    box-shadow: 
        0 2px 10px rgba(139, 92, 246, 0.3),
        0 4px 20px rgba(212, 175, 55, 0.2);
    
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes gradientShiftMenu {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Removido shimmer - botão limpo */
.btn-cta-menu::before {
    display: none;
}

/* Glow de fundo */
.btn-cta-menu::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 55px;
    background: linear-gradient(90deg, 
        #8B5CF6, 
        #D4AF37, 
        #F59E0B,
        #8B5CF6
    );
    background-size: 300% 100%;
    animation: gradientShiftMenu 4s ease infinite;
    z-index: -1;
    opacity: 0.6;
    filter: blur(8px);
}

.btn-cta-menu:hover {
    transform: translateY(-3px) scale(1.05);
    color: var(--cor-branco);
    letter-spacing: 0.04em;
}

.btn-cta-menu:hover::after {
    opacity: 1;
    filter: blur(12px);
}

.btn-cta-menu:active {
    transform: translateY(0) scale(0.98);
}

/* Texto do botão */
.btn-cta-menu .btn-text {
    position: relative;
    z-index: 5;
}

/* Estrelas mágicas flutuantes */
.btn-sparkle {
    position: absolute;
    font-size: 10px;
    pointer-events: none;
    z-index: 10;
}

.sparkle-1 {
    top: -12px;
    left: 15%;
    color: #FFD700;
    font-size: 12px;
    text-shadow: 0 0 8px #FFD700, 0 0 15px #FFD700, 0 0 25px #FFA500;
    animation: sparkleFloat1 2s ease-in-out infinite;
}

.sparkle-2 {
    top: -8px;
    right: 20%;
    color: #FFF;
    font-size: 10px;
    text-shadow: 0 0 6px #FFF, 0 0 12px #A855F7;
    animation: sparkleFloat2 2.3s ease-in-out infinite;
}

.sparkle-3 {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: #D4AF37;
    font-size: 8px;
    text-shadow: 0 0 6px #D4AF37, 0 0 12px #D4AF37;
    animation: sparkleFloat3 1.8s ease-in-out infinite;
}

.sparkle-4 {
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    color: #A855F7;
    font-size: 9px;
    text-shadow: 0 0 6px #A855F7, 0 0 12px #8B5CF6;
    animation: sparkleFloat4 2.5s ease-in-out infinite;
}

@keyframes sparkleFloat1 {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-6px) rotate(90deg) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) rotate(180deg) scale(1.4);
        opacity: 0.9;
    }
    75% {
        transform: translateY(-4px) rotate(270deg) scale(1.1);
        opacity: 1;
    }
}

@keyframes sparkleFloat2 {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.5;
    }
    33% {
        transform: translateY(-12px) rotate(-120deg) scale(1.5);
        opacity: 1;
    }
    66% {
        transform: translateY(-5px) rotate(-240deg) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes sparkleFloat3 {
    0%, 100% {
        transform: translateX(-50%) translateY(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateX(-50%) translateY(8px) scale(1.6);
        opacity: 1;
    }
}

@keyframes sparkleFloat4 {
    0%, 100% {
        transform: translateY(-50%) translateX(0) rotate(0deg) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-50%) translateX(8px) rotate(180deg) scale(1.4);
        opacity: 1;
    }
}

/* Hover: Estrelas explodem */
.btn-cta-menu:hover .sparkle-1 {
    animation: sparkleBurst 0.5s ease-out forwards;
}

.btn-cta-menu:hover .sparkle-2 {
    animation: sparkleBurst2 0.5s ease-out forwards;
    animation-delay: 0.1s;
}

.btn-cta-menu:hover .sparkle-3 {
    animation: sparkleBurst3 0.5s ease-out forwards;
    animation-delay: 0.05s;
}

.btn-cta-menu:hover .sparkle-4 {
    animation: sparkleBurst4 0.5s ease-out forwards;
    animation-delay: 0.15s;
}

@keyframes sparkleBurst {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-20px) translateX(-10px) rotate(180deg) scale(2);
        opacity: 1;
    }
    100% {
        transform: translateY(-8px) rotate(360deg) scale(1.3);
        opacity: 0.8;
    }
}

@keyframes sparkleBurst2 {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-25px) translateX(15px) rotate(-180deg) scale(2.2);
        opacity: 1;
    }
    100% {
        transform: translateY(-10px) rotate(-360deg) scale(1.4);
        opacity: 0.9;
    }
}

@keyframes sparkleBurst3 {
    0% {
        transform: translateX(-50%) translateY(0) scale(1);
    }
    50% {
        transform: translateX(-50%) translateY(15px) scale(2);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(5px) scale(1.5);
        opacity: 0.8;
    }
}

@keyframes sparkleBurst4 {
    0% {
        transform: translateY(-50%) translateX(0) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-50%) translateX(20px) rotate(180deg) scale(2);
        opacity: 1;
    }
    100% {
        transform: translateY(-50%) translateX(10px) rotate(360deg) scale(1.3);
        opacity: 0.9;
    }
}

/* Glow extra no hover */
.btn-cta-menu:hover {
    box-shadow: 
        0 4px 15px rgba(139, 92, 246, 0.5),
        0 8px 25px rgba(212, 175, 55, 0.4),
        0 0 40px rgba(255, 215, 0, 0.4),
        0 0 60px rgba(139, 92, 246, 0.2);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 10000 !important;
    position: relative;
    pointer-events: auto !important;
    -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--cor-branco);
    border-radius: 3px;
    transition: all 0.3s;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #312E81 100%);
    z-index: -1;
}

.stars, .stars2, .stars3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.stars {
    background-image: radial-gradient(2px 2px at 20% 30%, white, transparent),
                      radial-gradient(2px 2px at 60% 70%, white, transparent),
                      radial-gradient(1px 1px at 50% 50%, white, transparent),
                      radial-gradient(1px 1px at 80% 10%, white, transparent),
                      radial-gradient(2px 2px at 90% 40%, white, transparent),
                      radial-gradient(1px 1px at 33% 60%, white, transparent),
                      radial-gradient(2px 2px at 55% 80%, white, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: sparkle 20s linear infinite;
    opacity: 0.8;
}

.stars2 {
    background-image: radial-gradient(1px 1px at 25% 25%, white, transparent),
                      radial-gradient(1px 1px at 75% 75%, white, transparent);
    background-repeat: repeat;
    background-size: 300px 300px;
    animation: sparkle 15s linear infinite reverse;
    opacity: 0.6;
}

.stars3 {
    background-image: radial-gradient(1px 1px at 40% 40%, white, transparent);
    background-repeat: repeat;
    background-size: 400px 400px;
    animation: sparkle 25s linear infinite;
    opacity: 0.4;
}

@keyframes sparkle {
    from { transform: translateY(0); }
    to { transform: translateY(-200px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 30px;
}

.hero-logo {
    width: 550px;
    height: auto;
    margin: 0 auto 2rem auto;
    display: block;
    animation: fadeInUp 0.8s ease-out;
    filter: drop-shadow(0 4px 15px rgba(139, 92, 246, 0.3));
}

@media (max-width: 768px) {
    .hero-logo {
        width: 300px;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 300px;
        margin-bottom: 1rem;
    }
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--cor-branco);
    margin-bottom: 2rem;
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(139, 92, 246, 0.5);
    animation: fadeInUp 1s ease-out;
    letter-spacing: -0.02em;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: var(--cor-lilas);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 400;
}

.btn-cta-hero {
    font-family: 'Inter', sans-serif;
    display: inline-block;
    position: relative;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    color: var(--cor-branco);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    border: none;
    
    /* Gradiente - Roxo para Azul (diferente do menu) */
    background: linear-gradient(135deg, 
        #6366F1 0%, 
        #8B5CF6 30%, 
        #A855F7 60%, 
        #7C3AED 100%
    );
    background-size: 200% 200%;
    animation: gradientShiftHero 5s ease infinite;
    
    /* Sombra glow roxo/azul */
    box-shadow: 
        0 4px 20px rgba(99, 102, 241, 0.4),
        0 8px 35px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Gradiente animado Hero */
@keyframes gradientShiftHero {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 50%; }
}

/* Efeito shimmer/luz passando */
.btn-cta-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes shimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* Borda brilhante animada */
.btn-cta-hero::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 55px;
    background: linear-gradient(135deg, 
        #6366F1, 
        #8B5CF6, 
        #A855F7, 
        #6366F1
    );
    background-size: 200% 200%;
    animation: borderGlowHero 5s ease infinite;
    z-index: -1;
    opacity: 0.7;
    filter: blur(10px);
}

@keyframes borderGlowHero {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 50%; }
}

/* Hover ÉPICO */
.btn-cta-hero:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 8px 30px rgba(99, 102, 241, 0.5),
        0 15px 50px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
}

.btn-cta-hero:hover::after {
    opacity: 1;
    filter: blur(15px);
}

/* Efeito de click */
.btn-cta-hero:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 
        0 4px 15px rgba(139, 92, 246, 0.4),
        0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Pulse sutil constante */
.btn-cta-hero {
    animation: gradientShiftHero 5s ease infinite, btnPulseHero 3s ease-in-out infinite;
}

@keyframes btnPulseHero {
    0%, 100% { 
        box-shadow: 
            0 4px 20px rgba(99, 102, 241, 0.4),
            0 8px 35px rgba(139, 92, 246, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% { 
        box-shadow: 
            0 6px 25px rgba(99, 102, 241, 0.5),
            0 12px 45px rgba(139, 92, 246, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }
}

/* ===== ÓRBITA CÓSMICA DO BOTÃO HERO ===== */
.btn-cta-hero-wrapper {
    position: relative;
    display: inline-block;
}

/* Anel de Órbita */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(139, 92, 246, 0.2);
    border-radius: 100px;
    animation: orbitRotate 20s linear infinite;
    pointer-events: none;
}

@keyframes orbitRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Estrelas Orbitando */
.orbit-star {
    position: absolute;
    font-size: 14px;
    animation: starTwinkle 2s ease-in-out infinite;
}

.star-1 {
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    color: #FFD700;
    text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 30px #FFA500;
    font-size: 16px;
    animation-delay: 0s;
}

.star-2 {
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    color: #FFF;
    text-shadow: 0 0 8px #FFF, 0 0 15px #A855F7;
    font-size: 12px;
    animation-delay: 0.5s;
}

.star-3 {
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    color: #A855F7;
    text-shadow: 0 0 8px #A855F7, 0 0 15px #8B5CF6;
    font-size: 14px;
    animation-delay: 1s;
}

.star-4 {
    top: 50%;
    left: -8px;
    transform: translateY(-50%);
    color: #6366F1;
    text-shadow: 0 0 10px #6366F1, 0 0 20px #4F46E5;
    font-size: 18px;
    animation-delay: 1.5s;
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.4);
    }
}

.star-2, .star-4 {
    animation-name: starTwinkleY;
}

@keyframes starTwinkleY {
    0%, 100% {
        opacity: 0.6;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.4);
    }
}

/* Símbolo Astrológico (Lua) */
.astro-symbol {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: #D4AF37;
    text-shadow: 0 0 15px #D4AF37, 0 0 30px #D4AF37, 0 0 45px #FFD700;
    animation: moonFloat 4s ease-in-out infinite, moonGlow 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes moonFloat {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@keyframes moonGlow {
    0%, 100% {
        text-shadow: 0 0 15px #D4AF37, 0 0 30px #D4AF37, 0 0 45px #FFD700;
        opacity: 0.8;
    }
    50% {
        text-shadow: 0 0 20px #D4AF37, 0 0 40px #D4AF37, 0 0 60px #FFD700, 0 0 80px #FFA500;
        opacity: 1;
    }
}

/* Hover: Órbita acelera */
.btn-cta-hero-wrapper:hover .orbit-ring {
    animation-duration: 8s;
    border-color: rgba(139, 92, 246, 0.4);
}

.btn-cta-hero-wrapper:hover .orbit-star {
    animation-duration: 0.8s;
}

.btn-cta-hero-wrapper:hover .astro-symbol {
    animation-duration: 1.5s, 1s;
    font-size: 28px;
}

/* Responsividade da Órbita */
@media (max-width: 768px) {
    .orbit-ring {
        width: calc(100% + 40px);
        height: calc(100% + 40px);
    }
    
    .orbit-star {
        font-size: 12px;
    }
    
    .star-1 { font-size: 14px; top: -6px; }
    .star-2 { font-size: 10px; right: -6px; }
    .star-3 { font-size: 12px; bottom: -6px; }
    .star-4 { font-size: 14px; left: -6px; }
    
    .astro-symbol {
        font-size: 20px;
        top: -30px;
    }
}

@media (max-width: 480px) {
    .orbit-ring {
        width: calc(100% + 30px);
        height: calc(100% + 30px);
        border-style: dotted;
    }
    
    .star-2, .star-4 {
        display: none;
    }
    
    .astro-symbol {
        font-size: 18px;
        top: -25px;
    }
}

.hero-security {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--cor-lilas);
    opacity: 0.8;
}

/* ============================================
   SEÇÕES GERAIS
   ============================================ */
section {
    padding: 6rem 0;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--cor-branco);
    margin-bottom: 4rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 2rem;
    line-height: 1.3;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--cor-primaria), var(--cor-dourado));
    border-radius: 2px;
}

/* Como Funciona */
.como-funciona {
    background: linear-gradient(135deg, #0c1929 0%, #0f1a2e 40%, #1a1035 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.como-funciona .container {
    position: relative;
    z-index: 3;
}

/* Caminho/Fluxo SVG */
.flow-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.5;
}

.flow-svg {
    width: 100%;
    height: 100%;
}

.main-path {
    fill: none;
    stroke: url(#pathGradient);
    stroke: rgba(59, 130, 246, 0.3);
    stroke-width: 2;
    stroke-dasharray: 10 5;
    animation: pathFlow 3s linear infinite;
}

@keyframes pathFlow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -30; }
}

.arrow {
    fill: rgba(59, 130, 246, 0.6);
    animation: arrowPulse 2s ease-in-out infinite;
}

.arrow-1 { animation-delay: 0s; }
.arrow-2 { animation-delay: 0.5s; }
.arrow-3 { animation-delay: 1s; }

@keyframes arrowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(10px);
    }
}

.path-dot {
    fill: rgba(96, 165, 250, 0.8);
    animation: dotGlow 2s ease-in-out infinite;
}

.pd-1 { animation-delay: 0s; }
.pd-2 { animation-delay: 0.3s; }
.pd-3 { animation-delay: 0.6s; }
.pd-4 { animation-delay: 0.9s; }
.pd-5 { animation-delay: 1.2s; }
.pd-6 { animation-delay: 1.5s; }

@keyframes dotGlow {
    0%, 100% {
        opacity: 0.4;
        r: 2;
    }
    50% {
        opacity: 1;
        r: 4;
        filter: drop-shadow(0 0 6px rgba(96, 165, 250, 0.8));
    }
}

/* Círculos de Progresso */
.progress-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.progress-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.2);
    animation: circleExpand 6s ease-out infinite;
}

.pc-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.pc-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 50%;
    animation-delay: -2s;
}

.pc-3 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 10%;
    animation-delay: -4s;
}

@keyframes circleExpand {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
        border-color: rgba(59, 130, 246, 0.4);
    }
    100% {
        transform: scale(3);
        opacity: 0;
        border-color: rgba(59, 130, 246, 0);
    }
}

/* Linhas de Velocidade */
.speed-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.speed-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.5), transparent);
    animation: speedMove 4s linear infinite;
}

.sl-1 {
    width: 100px;
    top: 20%;
    animation-delay: 0s;
}

.sl-2 {
    width: 150px;
    top: 40%;
    animation-delay: -1s;
}

.sl-3 {
    width: 80px;
    top: 60%;
    animation-delay: -2s;
}

.sl-4 {
    width: 120px;
    top: 75%;
    animation-delay: -3s;
}

.sl-5 {
    width: 60px;
    top: 85%;
    animation-delay: -0.5s;
}

@keyframes speedMove {
    0% {
        left: -200px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Gradiente de fundo azul */
.como-funciona::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(96, 165, 250, 0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

/* Padrão de linhas diagonais sutis */
.como-funciona::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        135deg,
        transparent,
        transparent 50px,
        rgba(59, 130, 246, 0.02) 50px,
        rgba(59, 130, 246, 0.02) 51px
    );
    pointer-events: none;
    z-index: 1;
}

/* Responsividade Como Funciona */
@media (max-width: 768px) {
    .flow-path {
        opacity: 0.3;
    }
    
    .progress-circle {
        display: none;
    }
    
    .pc-1, .pc-2 {
        display: block;
    }
    
    .speed-line {
        display: none;
    }
    
    .sl-1, .sl-2, .sl-3 {
        display: block;
    }
}

@media (max-width: 480px) {
    .flow-path {
        display: none;
    }
    
    .progress-circle {
        display: none;
    }
    
    .speed-line {
        display: none;
    }
}

.passos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.passo-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(107, 33, 168, 0.1) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.passo-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cor-primaria), var(--cor-dourado));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.passo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra);
    border-color: var(--cor-primaria);
}

.passo-card:hover::after {
    transform: scaleX(1);
}

.passo-numero {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-dourado));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--cor-branco);
    margin: 0 auto 2rem;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.passo-card:hover .passo-numero {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.6);
}

.passo-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--cor-branco);
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.passo-card p {
    color: var(--cor-lilas);
    line-height: 1.7;
}

/* O que você recebe */
.o-que-recebe {
    background: var(--cor-fundo);
    position: relative;
    overflow: hidden;
}

/* ===== BACKGROUND DINÂMICO DA SEÇÃO ===== */
.section-bg-dynamic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.o-que-recebe .container {
    position: relative;
    z-index: 1;
}

.bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

/* ===== EFEITOS VISUAIS ANIMADOS ===== */

/* === PROFILE - Partículas de Aura === */
.bg-profile {
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
}

.aura-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.9) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(2px);
    animation: auraFloat 6s ease-in-out infinite;
}

.aura-particle.p1 { left: 10%; top: 30%; animation-delay: 0s; width: 12px; height: 12px; }
.aura-particle.p2 { left: 25%; top: 60%; animation-delay: 1s; }
.aura-particle.p3 { left: 40%; top: 20%; animation-delay: 2s; width: 10px; height: 10px; }
.aura-particle.p4 { left: 60%; top: 70%; animation-delay: 0.5s; }
.aura-particle.p5 { left: 75%; top: 40%; animation-delay: 1.5s; width: 14px; height: 14px; }
.aura-particle.p6 { left: 90%; top: 55%; animation-delay: 2.5s; }

.aura-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    animation: auraExpand 4s ease-out infinite;
}

.aura-ring.r1 { width: 100px; height: 100px; animation-delay: 0s; }
.aura-ring.r2 { width: 100px; height: 100px; animation-delay: 2s; }

@keyframes auraFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-30px) scale(1.3); opacity: 1; }
}

@keyframes auraExpand {
    0% { width: 100px; height: 100px; opacity: 0.8; }
    100% { width: 600px; height: 600px; opacity: 0; }
}

/* === VISION - Ondas de Percepção Suaves === */
.bg-vision {
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
}

.radar-sweep {
    display: none;
}

.radar-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 50%;
    animation: visionRingExpand 4s ease-out infinite;
}

.radar-ring.rr1 { width: 100px; height: 100px; animation-delay: 0s; }
.radar-ring.rr2 { width: 100px; height: 100px; animation-delay: 1.3s; }
.radar-ring.rr3 { width: 100px; height: 100px; animation-delay: 2.6s; }

.vision-eye {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: visionEyeGlow 3s ease-in-out infinite;
}

@keyframes visionRingExpand {
    0% { width: 100px; height: 100px; opacity: 0.5; border-color: rgba(139, 92, 246, 0.3); }
    100% { width: 800px; height: 800px; opacity: 0; border-color: rgba(59, 130, 246, 0.1); }
}

@keyframes visionEyeGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

/* === SEXUAL - Chamas Subindo === */
.bg-sexual {
    background: linear-gradient(0deg, rgba(220, 38, 38, 0.2) 0%, transparent 50%);
}

.flame-particle {
    position: absolute;
    bottom: 0;
    width: 20px;
    height: 60px;
    background: linear-gradient(0deg, rgba(239, 68, 68, 0.9) 0%, rgba(251, 146, 60, 0.7) 50%, transparent 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    filter: blur(3px);
    animation: flameRise 2s ease-out infinite;
}

.flame-particle.f1 { left: 5%; animation-delay: 0s; width: 25px; height: 80px; }
.flame-particle.f2 { left: 15%; animation-delay: 0.3s; width: 18px; height: 50px; }
.flame-particle.f3 { left: 28%; animation-delay: 0.6s; width: 22px; height: 70px; }
.flame-particle.f4 { left: 42%; animation-delay: 0.2s; width: 30px; height: 90px; }
.flame-particle.f5 { left: 55%; animation-delay: 0.5s; width: 20px; height: 55px; }
.flame-particle.f6 { left: 68%; animation-delay: 0.1s; width: 28px; height: 85px; }
.flame-particle.f7 { left: 80%; animation-delay: 0.4s; width: 16px; height: 45px; }
.flame-particle.f8 { left: 92%; animation-delay: 0.7s; width: 24px; height: 75px; }

.heat-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(0deg, rgba(220, 38, 38, 0.3) 0%, rgba(251, 146, 60, 0.1) 50%, transparent 100%);
    animation: heatPulse 1.5s ease-in-out infinite;
}

@keyframes flameRise {
    0% { transform: translateY(0) scaleY(1) scaleX(1); opacity: 0.9; }
    50% { transform: translateY(-100px) scaleY(1.2) scaleX(0.8); opacity: 0.7; }
    100% { transform: translateY(-200px) scaleY(0.5) scaleX(0.5); opacity: 0; }
}

@keyframes heatPulse {
    0%, 100% { opacity: 0.8; filter: brightness(1); }
    50% { opacity: 1; filter: brightness(1.3); }
}

/* === LOVE - Corações Flutuando === */
.bg-love {
    background: radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 60%);
}

.floating-heart {
    position: absolute;
    font-size: 24px;
    color: rgba(236, 72, 153, 0.7);
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
    animation: heartFloat 5s ease-in-out infinite;
}

.floating-heart.h1 { left: 10%; bottom: 20%; font-size: 30px; animation-delay: 0s; }
.floating-heart.h2 { left: 25%; bottom: 40%; font-size: 20px; animation-delay: 1s; }
.floating-heart.h3 { left: 45%; bottom: 10%; font-size: 36px; animation-delay: 0.5s; }
.floating-heart.h4 { left: 60%; bottom: 50%; font-size: 18px; animation-delay: 1.5s; }
.floating-heart.h5 { left: 75%; bottom: 30%; font-size: 28px; animation-delay: 2s; }
.floating-heart.h6 { left: 88%; bottom: 15%; font-size: 22px; animation-delay: 0.8s; }

.love-pulse {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(236, 72, 153, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: lovePulse 1.5s ease-in-out infinite;
}

@keyframes heartFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg) scale(1); opacity: 0.7; }
    25% { transform: translateY(-40px) rotate(5deg) scale(1.1); opacity: 1; }
    50% { transform: translateY(-80px) rotate(-3deg) scale(0.9); opacity: 0.8; }
    75% { transform: translateY(-40px) rotate(3deg) scale(1.05); opacity: 0.9; }
}

@keyframes lovePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(2); opacity: 0.2; }
}

/* === MONEY - Moedas Caindo === */
.bg-money {
    background: radial-gradient(ellipse at 50% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
}

.gold-coin {
    position: absolute;
    top: -50px;
    font-size: 28px;
    font-weight: bold;
    color: #D4AF37;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.8), 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: coinFall 4s linear infinite;
}

.gold-coin.c1 { left: 10%; animation-delay: 0s; font-size: 32px; }
.gold-coin.c2 { left: 30%; animation-delay: 0.8s; font-size: 24px; }
.gold-coin.c3 { left: 50%; animation-delay: 1.6s; font-size: 36px; }
.gold-coin.c4 { left: 70%; animation-delay: 0.4s; font-size: 28px; }
.gold-coin.c5 { left: 88%; animation-delay: 1.2s; font-size: 30px; }

.gold-sparkle {
    position: absolute;
    font-size: 18px;
    color: #FFD700;
    text-shadow: 0 0 20px #FFD700;
    animation: sparkleGold 2s ease-in-out infinite;
}

.gold-sparkle.s1 { left: 20%; top: 30%; animation-delay: 0s; }
.gold-sparkle.s2 { left: 60%; top: 50%; animation-delay: 0.7s; }
.gold-sparkle.s3 { left: 80%; top: 25%; animation-delay: 1.4s; }

.gold-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    animation: goldGlow 3s ease-in-out infinite;
}

@keyframes coinFall {
    0% { transform: translateY(0) rotateY(0deg); opacity: 1; }
    100% { transform: translateY(calc(100vh + 50px)) rotateY(720deg); opacity: 0.5; }
}

@keyframes sparkleGold {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.5; }
    50% { transform: scale(1.5) rotate(180deg); opacity: 1; }
}

@keyframes goldGlow {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.2); }
}

/* === SHADOW - Lua e Sombras Suaves === */
.bg-shadow {
    background: radial-gradient(ellipse at 50% 50%, rgba(88, 28, 135, 0.1) 0%, transparent 70%);
}

.shadow-mist {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    filter: blur(30px);
    animation: shadowMistFloat 10s ease-in-out infinite;
}

.shadow-mist.m1 { left: 10%; top: 20%; animation-delay: 0s; }
.shadow-mist.m2 { right: 10%; top: 40%; animation-delay: 3s; }
.shadow-mist.m3 { left: 40%; bottom: 20%; animation-delay: 6s; }

.dark-void {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: moonGlowShadow 4s ease-in-out infinite;
}

.shadow-tendril {
    display: none;
}

@keyframes shadowMistFloat {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(-20px); opacity: 0.7; }
}

@keyframes moonGlowShadow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.8; }
}

/* === PURPOSE - Estrelas Cadentes === */
.bg-purpose {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.3) 0%, transparent 50%);
}

.shooting-star {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.9) 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
    transform: rotate(-45deg);
    animation: shootingStar 3s linear infinite;
}

.shooting-star.ss1 { top: 10%; left: 20%; animation-delay: 0s; }
.shooting-star.ss2 { top: 30%; left: 60%; animation-delay: 1s; width: 80px; }
.shooting-star.ss3 { top: 50%; left: 40%; animation-delay: 2s; width: 120px; }

.twinkling-star {
    position: absolute;
    font-size: 16px;
    color: #FFF;
    text-shadow: 0 0 10px #FFF, 0 0 20px rgba(251, 191, 36, 0.5);
    animation: twinkleStar 2s ease-in-out infinite;
}

.twinkling-star.ts1 { left: 10%; top: 20%; animation-delay: 0s; font-size: 20px; color: #FBBF24; }
.twinkling-star.ts2 { left: 30%; top: 40%; animation-delay: 0.5s; }
.twinkling-star.ts3 { left: 55%; top: 15%; animation-delay: 1s; font-size: 18px; }
.twinkling-star.ts4 { left: 75%; top: 55%; animation-delay: 1.5s; color: #FBBF24; }
.twinkling-star.ts5 { left: 90%; top: 30%; animation-delay: 0.8s; font-size: 14px; }

.cosmic-glow {
    position: absolute;
    top: 0;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
    animation: cosmicPulse 4s ease-in-out infinite;
}

@keyframes shootingStar {
    0% { transform: rotate(-45deg) translateX(0); opacity: 1; }
    70% { opacity: 1; }
    100% { transform: rotate(-45deg) translateX(500px); opacity: 0; }
}

@keyframes twinkleStar {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.4); opacity: 1; }
}

@keyframes cosmicPulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scale(1.3); }
}

/* === WISDOM - Nascer do Sol === */
.bg-wisdom {
    background: 
        radial-gradient(ellipse 120% 60% at 50% 100%, rgba(245, 158, 11, 0.25) 0%, rgba(251, 191, 36, 0.15) 30%, transparent 60%),
        radial-gradient(ellipse 80% 40% at 50% 95%, rgba(234, 179, 8, 0.3) 0%, transparent 50%),
        linear-gradient(0deg, rgba(245, 158, 11, 0.1) 0%, transparent 40%);
}

.light-ray {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(0deg, rgba(251, 191, 36, 0.6) 0%, rgba(245, 158, 11, 0.3) 50%, transparent 100%);
    transform-origin: bottom center;
    animation: sunRayGrow 2s ease-out forwards;
}

.light-ray.lr1 { transform: rotate(-30deg); animation-delay: 0.1s; }
.light-ray.lr2 { transform: rotate(-18deg); animation-delay: 0.2s; }
.light-ray.lr3 { transform: rotate(-6deg); animation-delay: 0.3s; }
.light-ray.lr4 { transform: rotate(6deg); animation-delay: 0.3s; }
.light-ray.lr5 { transform: rotate(18deg); animation-delay: 0.2s; }
.light-ray.lr6 { transform: rotate(30deg); animation-delay: 0.1s; }

.sun-core {
    position: absolute;
    left: 50%;
    bottom: -50px;
    width: 150px;
    height: 150px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(251, 191, 36, 0.5) 0%, rgba(245, 158, 11, 0.3) 40%, transparent 70%);
    border-radius: 50%;
    animation: sunRise 3s ease-in-out infinite;
}

.wisdom-particle {
    position: absolute;
    font-size: 12px;
    color: rgba(251, 191, 36, 0.7);
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
    animation: wisdomFloat 4s ease-in-out infinite;
}

.wisdom-particle.wp1 { left: 20%; bottom: 30%; animation-delay: 0s; }
.wisdom-particle.wp2 { left: 75%; bottom: 40%; animation-delay: 1.5s; }
.wisdom-particle.wp3 { left: 50%; bottom: 50%; animation-delay: 0.8s; }

@keyframes sunRayGrow {
    0% { height: 0; opacity: 0; }
    100% { height: 350px; opacity: 0.6; }
}

@keyframes sunRise {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
    50% { transform: translateX(-50%) translateY(-20px); opacity: 1; }
}

@keyframes wisdomFloat {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-15px); opacity: 0.9; }
}

/* Ativação dos backgrounds por tema */
.o-que-recebe[data-active-theme="profile"] .bg-profile { opacity: 1; }
.o-que-recebe[data-active-theme="vision"] .bg-vision { opacity: 1; }
.o-que-recebe[data-active-theme="sexual"] .bg-sexual { opacity: 1; }
.o-que-recebe[data-active-theme="love"] .bg-love { opacity: 1; }
.o-que-recebe[data-active-theme="money"] .bg-money { opacity: 1; }
.o-que-recebe[data-active-theme="shadow"] .bg-shadow { opacity: 1; }
.o-que-recebe[data-active-theme="purpose"] .bg-purpose { opacity: 1; }
.o-que-recebe[data-active-theme="wisdom"] .bg-wisdom { opacity: 1; }

/* Efeito extra: borda da seção muda de cor */
.o-que-recebe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.5s ease, background 0.5s ease;
    z-index: 2;
}

.o-que-recebe[data-active-theme="profile"]::before { opacity: 1; background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.7), transparent); }
.o-que-recebe[data-active-theme="vision"]::before { opacity: 1; background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.7), transparent); }
.o-que-recebe[data-active-theme="sexual"]::before { opacity: 1; background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.8), transparent); }
.o-que-recebe[data-active-theme="love"]::before { opacity: 1; background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.7), transparent); }
.o-que-recebe[data-active-theme="money"]::before { opacity: 1; background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.8), transparent); }
.o-que-recebe[data-active-theme="shadow"]::before { opacity: 1; background: linear-gradient(90deg, transparent, rgba(88, 28, 135, 0.7), transparent); }
.o-que-recebe[data-active-theme="purpose"]::before { opacity: 1; background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.7), transparent); }
.o-que-recebe[data-active-theme="wisdom"]::before { opacity: 1; background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.7), transparent); }

.recebe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.recebe-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(107, 33, 168, 0.05) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.recebe-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.5s;
}

.recebe-card:hover::before {
    left: 100%;
}

.recebe-card:hover {
    transform: translateY(-5px);
    border-color: var(--cor-primaria);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.recebe-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--cor-primaria);
    height: 80px;
    background: transparent !important;
    border: none !important;
    padding: 0;
    box-shadow: none !important;
}

.recebe-icon svg {
    width: 64px;
    height: 64px;
    background: transparent !important;
    border: none !important;
    display: block;
    fill: none !important;
    stroke: currentColor;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    border-radius: 0 !important;
}

.recebe-icon svg * {
    background: transparent !important;
    fill: none !important;
}

/* Imagens de ícone */
.recebe-icon .icon-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.recebe-card:hover .icon-img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5));
}

.recebe-icon svg path,
.recebe-icon svg circle,
.recebe-icon svg polygon,
.recebe-icon svg line {
    fill: none !important;
    background: transparent !important;
}

/* Animações dos ícones SVG */
.icon-animated {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.sparkle {
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.flame {
    animation: flame 1.5s ease-in-out infinite;
    transform-origin: bottom center;
}

@keyframes flame {
    0%, 100% { transform: scaleY(1) scaleX(1); }
    25% { transform: scaleY(1.1) scaleX(0.95); }
    50% { transform: scaleY(0.95) scaleX(1.05); }
    75% { transform: scaleY(1.05) scaleX(0.98); }
}

.heartbeat {
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20%, 40% { transform: scale(1); }
}

.money-shake {
    animation: moneyShake 2s ease-in-out infinite;
}

@keyframes moneyShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.moon-glow {
    animation: moonGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

@keyframes moonGlow {
    0%, 100% { opacity: 1; filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5)); }
    50% { opacity: 0.8; filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.8)); }
}

.star-twinkle {
    animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.7; transform: scale(1.1) rotate(180deg); }
}

.bulb-glow {
    animation: bulbGlow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
}

@keyframes bulbGlow {
    0%, 100% { opacity: 1; filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6)); }
    50% { opacity: 0.8; filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.9)); }
}

.recebe-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--cor-branco);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.recebe-card p {
    font-family: 'Inter', sans-serif;
    color: var(--cor-lilas);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 400;
}

/* ===== EFEITOS TEMÁTICOS DOS CARDS ===== */
.card-bg-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.recebe-card:hover .card-bg-effect {
    opacity: 1;
}

.recebe-card h3,
.recebe-card p,
.recebe-icon {
    position: relative;
    z-index: 1;
}

/* 1. PERFIL - Aura Energética */
.recebe-card[data-theme="profile"] .card-bg-effect {
    background: transparent;
}

.recebe-card[data-theme="profile"]:hover {
    border-color: #EC4899;
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.3), 0 0 60px rgba(139, 92, 246, 0.2);
}

.recebe-card[data-theme="profile"]:hover .icon-profile {
    filter: drop-shadow(0 0 15px rgba(236, 72, 153, 0.5)) drop-shadow(0 0 25px rgba(96, 165, 250, 0.4));
    animation: profileGlow 2s ease-in-out infinite;
}

@keyframes profileGlow {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1.15); }
}

/* 2. VISÃO - Olho/Ondas de Percepção */
.recebe-card[data-theme="vision"] .card-bg-effect {
    background: transparent;
}

.recebe-card[data-theme="vision"]:hover {
    border-color: #60A5FA;
    box-shadow: 0 0 30px rgba(96, 165, 250, 0.4), 0 0 60px rgba(96, 165, 250, 0.2);
}

.recebe-card[data-theme="vision"]:hover .icon-img {
    filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.6));
}

/* 3. SEXUAL - Fogo/Paixão Vermelho */
.recebe-card[data-theme="sexual"] .card-bg-effect {
    background: transparent;
}

.recebe-card[data-theme="sexual"]:hover {
    border-color: #EF4444;
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.5), 0 0 60px rgba(239, 68, 68, 0.3);
}

.recebe-card[data-theme="sexual"]:hover .icon-fire {
    filter: drop-shadow(0 0 20px rgba(239, 68, 68, 0.7)) brightness(1.1);
    animation: fireFlicker 0.5s ease-in-out infinite;
}

@keyframes fireFlicker {
    0%, 100% { transform: scale(1.1) rotate(-2deg); }
    50% { transform: scale(1.15) rotate(2deg); }
}

/* 4. AMOR - Rosa/Corações */
.recebe-card[data-theme="love"] .card-bg-effect {
    background: transparent;
}

.recebe-card[data-theme="love"]:hover {
    border-color: #EC4899;
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.4), 0 0 60px rgba(236, 72, 153, 0.2);
}

.recebe-card[data-theme="love"]:hover .icon-heart {
    filter: drop-shadow(0 0 20px rgba(236, 72, 153, 0.7));
    animation: heartBeat 0.8s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1.1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1.1); }
    75% { transform: scale(1.25); }
}

/* 5. DINHEIRO - Dourado/Verde */
.recebe-card[data-theme="money"] .card-bg-effect {
    background: transparent;
}

.recebe-card[data-theme="money"]:hover {
    border-color: #22C55E;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.4), 0 0 60px rgba(212, 175, 55, 0.3);
}

.recebe-card[data-theme="money"]:hover .icon-money {
    filter: drop-shadow(0 0 15px rgba(34, 197, 94, 0.6)) drop-shadow(0 0 25px rgba(212, 175, 55, 0.5));
    animation: moneyShake 0.5s ease-in-out infinite;
}

@keyframes moneyShake {
    0%, 100% { transform: scale(1.1) rotate(-2deg); }
    50% { transform: scale(1.15) rotate(2deg); }
}

/* 6. SOMBRAS - Lua Mística */
.recebe-card[data-theme="shadow"] .card-bg-effect {
    background: transparent;
}

.recebe-card[data-theme="shadow"]:hover {
    border-color: #D4AF37;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3), 0 0 60px rgba(88, 28, 135, 0.3);
}

.recebe-card[data-theme="shadow"]:hover .icon-moon {
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.7)) drop-shadow(0 0 30px rgba(251, 191, 36, 0.4));
    animation: moonGlowEffect 3s ease-in-out infinite;
}

@keyframes moonGlowEffect {
    0%, 100% { transform: scale(1.1); filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.7)); }
    50% { transform: scale(1.15); filter: drop-shadow(0 0 30px rgba(251, 191, 36, 0.9)); }
}

/* 7. PROPÓSITO - Bússola/Direção */
.recebe-card[data-theme="purpose"] .card-bg-effect {
    background: transparent;
}

.recebe-card[data-theme="purpose"]:hover {
    border-color: #3B82F6;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4), 0 0 60px rgba(59, 130, 246, 0.2);
}

.recebe-card[data-theme="purpose"]:hover .icon-compass {
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.7)) drop-shadow(0 0 35px rgba(96, 165, 250, 0.5));
    animation: compassSpin 3s ease-in-out infinite;
}

@keyframes compassSpin {
    0%, 100% { transform: scale(1.1) rotate(-5deg); }
    25% { transform: scale(1.15) rotate(5deg); }
    50% { transform: scale(1.1) rotate(-3deg); }
    75% { transform: scale(1.15) rotate(3deg); }
}

/* 8. SABEDORIA - Sol/Luz Dourada */
.recebe-card[data-theme="wisdom"] .card-bg-effect {
    background: transparent;
}

.recebe-card[data-theme="wisdom"]:hover {
    border-color: #F59E0B;
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.5), 0 0 60px rgba(251, 191, 36, 0.4);
}

.recebe-card[data-theme="wisdom"]:hover .icon-sun {
    filter: drop-shadow(0 0 25px rgba(245, 158, 11, 0.8)) drop-shadow(0 0 40px rgba(251, 191, 36, 0.6));
    animation: sunShine 2s ease-in-out infinite;
}

@keyframes sunShine {
    0%, 100% { transform: scale(1.1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(10deg); }
}

/* Transição suave para o ícone */
.recebe-card .recebe-icon {
    transition: color 0.4s ease, filter 0.4s ease;
}

/* Responsividade dos efeitos */
@media (max-width: 768px) {
    .card-bg-effect {
        opacity: 0.7;
    }
    
    .recebe-card:hover .card-bg-effect {
        opacity: 0.8;
    }
}

/* Diferenciais */
.diferenciais {
    background: linear-gradient(180deg, #0a0d1a 0%, #0d1a2e 50%, #0a0d1a 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.diferenciais .container {
    position: relative;
    z-index: 3;
}

/* Rede Neural / Conexões SVG */
.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.6;
}

.network-svg {
    width: 100%;
    height: 100%;
}

.node {
    fill: rgba(59, 130, 246, 0.8);
    animation: nodePulse 3s ease-in-out infinite;
}

.node-1 { animation-delay: 0s; }
.node-2 { animation-delay: -0.3s; }
.node-3 { animation-delay: -0.6s; }
.node-4 { animation-delay: -0.9s; }
.node-5 { animation-delay: -1.2s; }
.node-6 { animation-delay: -1.5s; }
.node-7 { animation-delay: -1.8s; }
.node-8 { animation-delay: -2.1s; }
.node-9 { animation-delay: -0.4s; }
.node-10 { animation-delay: -0.8s; }
.node-11 { animation-delay: -1.1s; }
.node-12 { animation-delay: -1.6s; }
.node-13 { animation-delay: -2s; }

@keyframes nodePulse {
    0%, 100% {
        opacity: 0.4;
        r: 3;
        filter: drop-shadow(0 0 2px rgba(139, 92, 246, 0.3));
    }
    50% {
        opacity: 1;
        r: 5;
        filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.8));
    }
}

.connection {
    stroke: rgba(59, 130, 246, 0.25);
    stroke-width: 1;
    fill: none;
    stroke-dasharray: 5 5;
    animation: connectionFlow 4s linear infinite;
}

.connection.cross {
    stroke: rgba(167, 139, 250, 0.15);
    stroke-dasharray: 3 7;
    animation-duration: 6s;
}

@keyframes connectionFlow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -20; }
}

/* Partículas de Luz Flutuantes */
.light-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.light-particle {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    animation: particleFloat 10s ease-in-out infinite;
}

.lp-1 {
    top: 10%;
    left: 10%;
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.lp-2 {
    top: 30%;
    right: 15%;
    width: 60px;
    height: 60px;
    animation-delay: -2s;
}

.lp-3 {
    bottom: 20%;
    left: 20%;
    width: 90px;
    height: 90px;
    animation-delay: -4s;
}

.lp-4 {
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    animation-delay: -3s;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.1) 0%, transparent 70%);
}

.lp-5 {
    bottom: 30%;
    right: 10%;
    width: 70px;
    height: 70px;
    animation-delay: -5s;
}

.lp-6 {
    top: 15%;
    left: 60%;
    width: 50px;
    height: 50px;
    animation-delay: -1s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(20px, -30px) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translate(-10px, -20px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(15px, -40px) scale(1.1);
        opacity: 0.5;
    }
}

/* Brilho de fundo */
.diferenciais::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(96, 165, 250, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

/* Grade sutil de pontos */
.diferenciais::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(59, 130, 246, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

/* Responsividade Diferenciais */
@media (max-width: 768px) {
    .neural-network {
        opacity: 0.3;
    }
    
    .light-particle {
        display: none;
    }
    
    .lp-1, .lp-2, .lp-3 {
        display: block;
    }
}

@media (max-width: 480px) {
    .neural-network {
        display: none;
    }
    
    .light-particle {
        display: none;
    }
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.diferencial-item {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(107, 33, 168, 0.05) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.diferencial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--cor-primaria), var(--cor-dourado));
    opacity: 0;
    transition: opacity 0.3s;
}

.diferencial-item:hover {
    transform: translateX(5px);
    border-color: var(--cor-primaria);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.diferencial-item:hover::before {
    opacity: 1;
}

.diferencial-item h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--cor-dourado);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.diferencial-item p {
    font-family: 'Inter', sans-serif;
    color: var(--cor-lilas);
    line-height: 1.7;
    font-weight: 400;
}

/* Depoimentos */
.depoimentos {
    background: linear-gradient(180deg, 
        var(--cor-fundo) 0%, 
        rgba(15, 10, 25, 1) 30%,
        rgba(20, 15, 35, 1) 50%,
        rgba(15, 10, 25, 1) 70%,
        var(--cor-fundo) 100%
    );
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.depoimentos .container {
    position: relative;
    z-index: 4;
}

/* Ondas Sonoras - Círculos que Expandem */
.sound-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sound-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    animation: soundExpand 8s ease-out infinite;
}

.sound-ring-1 {
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.sound-ring-2 {
    width: 100px;
    height: 100px;
    animation-delay: -2s;
}

.sound-ring-3 {
    width: 100px;
    height: 100px;
    animation-delay: -4s;
}

.sound-ring-4 {
    width: 100px;
    height: 100px;
    animation-delay: -6s;
}

@keyframes soundExpand {
    0% {
        width: 100px;
        height: 100px;
        opacity: 0.8;
        border-color: rgba(139, 92, 246, 0.4);
    }
    100% {
        width: 1200px;
        height: 1200px;
        opacity: 0;
        border-color: rgba(139, 92, 246, 0);
    }
}

/* Barras de Frequência - Equalizador */
.frequency-bars {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    padding: 0 10%;
    pointer-events: none;
    opacity: 0.15;
}

.freq-bar {
    width: 4px;
    background: linear-gradient(180deg, 
        rgba(212, 175, 55, 0.8) 0%, 
        rgba(99, 102, 241, 0.6) 50%,
        rgba(129, 140, 248, 0.4) 100%
    );
    border-radius: 2px 2px 0 0;
    animation: equalize 1.2s ease-in-out infinite;
}

.freq-bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.freq-bar:nth-child(2) { height: 45px; animation-delay: -0.1s; }
.freq-bar:nth-child(3) { height: 30px; animation-delay: -0.2s; }
.freq-bar:nth-child(4) { height: 60px; animation-delay: -0.3s; }
.freq-bar:nth-child(5) { height: 40px; animation-delay: -0.4s; }
.freq-bar:nth-child(6) { height: 80px; animation-delay: -0.5s; }
.freq-bar:nth-child(7) { height: 55px; animation-delay: -0.6s; }
.freq-bar:nth-child(8) { height: 70px; animation-delay: -0.7s; }
.freq-bar:nth-child(9) { height: 35px; animation-delay: -0.8s; }
.freq-bar:nth-child(10) { height: 50px; animation-delay: -0.9s; }
.freq-bar:nth-child(11) { height: 25px; animation-delay: -1s; }
.freq-bar:nth-child(12) { height: 40px; animation-delay: -1.1s; }

@keyframes equalize {
    0%, 100% { 
        transform: scaleY(1);
        opacity: 0.5;
    }
    50% { 
        transform: scaleY(2);
        opacity: 1;
    }
}

/* Aspas Gigantes Flutuantes */
.floating-quotes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.quote-mark {
    position: absolute;
    font-family: 'Georgia', serif;
    font-size: 200px;
    font-weight: bold;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.1);
    line-height: 1;
    animation: quoteFloat 15s ease-in-out infinite;
    user-select: none;
}

.quote-1 {
    top: 5%;
    left: 3%;
    font-size: 180px;
    animation-delay: 0s;
    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.08);
}

.quote-2 {
    top: 15%;
    right: 5%;
    font-size: 150px;
    animation-delay: -3s;
    -webkit-text-stroke: 1px rgba(99, 102, 241, 0.1);
}

.quote-3 {
    bottom: 20%;
    left: 8%;
    font-size: 120px;
    animation-delay: -6s;
    -webkit-text-stroke: 1px rgba(129, 140, 248, 0.08);
}

.quote-4 {
    bottom: 10%;
    right: 10%;
    font-size: 160px;
    animation-delay: -9s;
    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.06);
}

@keyframes quoteFloat {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
        opacity: 0.5;
    }
    25% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-25px) rotate(-2deg);
        opacity: 0.7;
    }
}

/* Linhas de Conexão Diagonal - DESABILITADO (causava lentidão no mobile) */
.depoimentos::before {
    display: none;
}


/* Brilho Suave Superior e Inferior */
.depoimentos::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top center, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom center, rgba(212, 175, 55, 0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 20% 50%, rgba(129, 140, 248, 0.03) 0%, transparent 30%),
        radial-gradient(ellipse at 80% 50%, rgba(212, 175, 55, 0.02) 0%, transparent 30%);
    animation: glowPulse 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Responsividade Depoimentos - Efeitos */
@media (max-width: 768px) {
    .frequency-bars {
        height: 80px;
        gap: 5px;
    }
    
    .freq-bar {
        width: 3px;
    }
    
    .quote-mark {
        font-size: 100px !important;
    }
    
    .quote-3, .quote-4 {
        display: none;
    }
    
    .sound-ring {
        animation-duration: 6s;
    }
}

@media (max-width: 480px) {
    .frequency-bars {
        display: none;
    }
    
    .quote-mark {
        font-size: 80px !important;
    }
    
    .quote-2, .quote-3, .quote-4 {
        display: none;
    }
}

.depoimentos-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 70px;
    z-index: 5;
}

.depoimentos-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1.5rem 0;
}

.depoimentos-carousel::-webkit-scrollbar {
    display: none;
}

.depoimento-card {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.12) 0%, rgba(107, 33, 168, 0.08) 100%);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 320px;
    max-width: 360px;
    flex-shrink: 0;
    scroll-snap-align: center;
}

.depoimento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cor-primaria), var(--cor-dourado));
    opacity: 0;
    transition: opacity 0.3s;
}

.depoimento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.25);
    border-color: var(--cor-primaria);
}

.depoimento-card:hover::before {
    opacity: 1;
}

.depoimento-foto {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--cor-primaria);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.35);
    position: relative;
}

.depoimento-foto::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-dourado));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.7;
}

.depoimento-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.depoimento-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 1.25rem;
}

.depoimento-stars svg {
    width: 18px;
    height: 18px;
}

.depoimento-texto {
    font-family: 'Inter', sans-serif;
    color: var(--cor-lilas);
    font-style: italic;
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: center;
    position: relative;
    padding: 0 0.5rem;
    font-weight: 400;
}

.depoimento-texto::before,
.depoimento-texto::after {
    content: '"';
    font-size: 2.5rem;
    color: var(--cor-primaria);
    opacity: 0.25;
    position: absolute;
    font-family: Georgia, serif;
}

.depoimento-texto::before {
    top: -8px;
    left: -5px;
}

.depoimento-texto::after {
    bottom: -25px;
    right: -5px;
}

.depoimento-autor {
    font-family: 'Inter', sans-serif;
    text-align: center;
    color: var(--cor-branco);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

/* Botões do Carousel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 92, 246, 0.15);
    border: 2px solid rgba(139, 92, 246, 0.5);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--cor-branco);
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(8px);
}

.carousel-btn:hover {
    background: var(--cor-primaria);
    border-color: var(--cor-primaria);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.45);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.carousel-prev {
    left: 5px;
}

.carousel-next {
    right: 5px;
}

/* Dots do Carousel */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(139, 92, 246, 0.5);
}

.carousel-dot.active {
    background: var(--cor-primaria);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

/* ===== RESPONSIVIDADE DEPOIMENTOS ===== */

/* Desktop Grande (1200px+) */
@media (min-width: 1200px) {
    .depoimento-card {
        min-width: 350px;
        max-width: 380px;
        padding: 2.5rem 2rem;
    }
    
    .depoimento-foto {
        width: 100px;
        height: 100px;
    }
    
    .depoimento-texto {
        font-size: 1rem;
    }
}

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
    .depoimentos-carousel-wrapper {
        padding: 0 60px;
    }
    
    .depoimento-card {
        min-width: 300px;
        max-width: 340px;
        padding: 1.75rem 1.5rem;
    }
    
    .carousel-btn {
        width: 44px;
        height: 44px;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .depoimentos {
        padding: 4rem 0;
    }
    
    .depoimentos-carousel-wrapper {
        padding: 0 50px;
    }
    
    .depoimentos-carousel {
        gap: 1rem;
    }
    
    .depoimento-card {
        min-width: 280px;
        max-width: 300px;
        padding: 1.5rem 1.25rem;
        border-radius: 20px;
    }
    
    .depoimento-foto {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .depoimento-stars svg {
        width: 16px;
        height: 16px;
    }
    
    .depoimento-texto {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .depoimento-texto::before,
    .depoimento-texto::after {
        font-size: 2rem;
    }
    
    .depoimento-autor {
        font-size: 0.85rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .carousel-dots {
        gap: 6px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
}

/* Mobile Grande (576px) */
@media (max-width: 576px) {
    .depoimentos {
        padding: 3rem 0;
    }
    
    .depoimentos-carousel-wrapper {
        padding: 0 40px;
    }
    
    .depoimento-card {
        min-width: 260px;
        max-width: 280px;
        padding: 1.5rem 1rem;
    }
    
    .depoimento-foto {
        width: 70px;
        height: 70px;
}

.depoimento-texto {
        font-size: 0.85rem;
        padding: 0;
}

.depoimento-texto::before,
.depoimento-texto::after {
        display: none;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
    }
    
    .carousel-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .carousel-prev {
        left: 2px;
    }
    
    .carousel-next {
        right: 2px;
    }
}

/* Mobile Pequeno (420px) */
@media (max-width: 420px) {
    .depoimentos-carousel-wrapper {
        padding: 0 35px;
    }
    
    .depoimento-card {
        min-width: 240px;
        max-width: 260px;
        padding: 1.25rem 1rem;
    }
    
    .depoimento-foto {
        width: 65px;
        height: 65px;
        border-width: 2px;
    }
    
    .depoimento-stars {
        margin-bottom: 1rem;
    }
    
    .depoimento-stars svg {
        width: 14px;
        height: 14px;
    }
    
    .depoimento-texto {
        font-size: 0.8rem;
        line-height: 1.5;
}

.depoimento-autor {
        font-size: 0.8rem;
    }
    
    .carousel-btn {
        width: 32px;
        height: 32px;
    }
    
    .carousel-btn svg {
        width: 14px;
        height: 14px;
    }
}

/* Mobile Extra Pequeno (360px) */
@media (max-width: 360px) {
    .depoimentos-carousel-wrapper {
        padding: 0 30px;
    }
    
    .depoimento-card {
        min-width: 220px;
        max-width: 240px;
        padding: 1rem 0.875rem;
    }
    
    .depoimento-foto {
        width: 60px;
        height: 60px;
    }
    
    .carousel-btn {
        width: 28px;
        height: 28px;
    }
    
    .carousel-btn svg {
        width: 12px;
        height: 12px;
    }
}

/* ===== PÁGINAS LEGAIS (Política de Privacidade / Termos de Uso) ===== */
.legal-page {
    min-height: 100vh;
    padding: 7rem 0 4rem;
    background: var(--cor-fundo);
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.legal-card {
    background: rgba(15, 15, 25, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-icon svg {
    width: 28px;
    height: 28px;
    color: var(--cor-primaria);
}

.legal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--cor-branco);
    margin-bottom: 0.5rem;
}

.legal-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(200, 180, 220, 0.6);
}

.legal-content {
    color: rgba(200, 180, 220, 0.85);
    line-height: 1.8;
    font-size: 0.95rem;
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--cor-branco);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.legal-section-title .section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 6px;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--cor-primaria);
}

.legal-section p {
    margin-bottom: 0.75rem;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section strong {
    color: var(--cor-branco);
    font-weight: 500;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0 0;
}

.legal-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    color: rgba(200, 180, 220, 0.85);
}

.legal-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--cor-primaria);
    font-size: 1.2rem;
    line-height: 1;
}

.legal-list li:last-child {
    margin-bottom: 0;
}

.legal-list li strong {
    color: var(--cor-branco);
}

.legal-highlight {
    background: rgba(139, 92, 246, 0.08);
    border-left: 3px solid var(--cor-primaria);
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.25rem;
    margin: 0.75rem 0;
}

.legal-highlight p {
    margin: 0;
    font-size: 0.9rem;
}

.legal-footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.legal-footer-text {
    font-size: 0.85rem;
    color: rgba(200, 180, 220, 0.5);
    margin-bottom: 1.25rem;
}

.legal-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--cor-primaria);
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.legal-back-btn:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--cor-primaria);
}

.legal-back-btn svg {
    width: 16px;
    height: 16px;
}

/* Responsividade Páginas Legais */
@media (max-width: 768px) {
    .legal-page {
        padding: 6rem 0 3rem;
    }
    
    .legal-container {
        padding: 0 1rem;
    }
    
    .legal-card {
        padding: 1.75rem 1.25rem;
        border-radius: 12px;
    }
    
    .legal-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }
    
    .legal-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .legal-title {
        font-size: 1.65rem;
    }
    
    .legal-section-title {
        font-size: 1rem;
    }
    
    .legal-content {
        font-size: 0.9rem;
        line-height: 1.75;
    }
}

@media (max-width: 480px) {
    .legal-page {
        padding: 5.5rem 0 2.5rem;
    }
    
    .legal-card {
        padding: 1.5rem 1rem;
    }
    
    .legal-header {
        margin-bottom: 2rem;
        padding-bottom: 1.25rem;
    }
    
    .legal-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 1rem;
    }
    
    .legal-title {
        font-size: 1.5rem;
    }
    
    .legal-section {
        margin-bottom: 1.5rem;
    }
    
    .legal-section-title {
        font-size: 0.95rem;
    }
    
    .legal-section-title .section-number {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
    }
    
    .legal-content {
        font-size: 0.875rem;
    }
    
    .legal-list li {
        font-size: 0.875rem;
        padding-left: 1rem;
    }
    
    .legal-list li::before {
        width: 6px;
        height: 6px;
        top: 0.55rem;
    }
    
    .legal-highlight {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .legal-footer {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .legal-back-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* FAQ */
.faq {
    background: linear-gradient(180deg, #0f0a1f 0%, #1a0d35 50%, #0f0a1f 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.faq .container {
    position: relative;
    z-index: 3;
    pointer-events: auto;
}

.faq-list {
    position: relative;
    z-index: 5;
    pointer-events: auto;
}

/* Aurora Boreal / Nebulosa */
.faq-aurora {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center,
        rgba(139, 92, 246, 0.15) 0%,
        rgba(107, 33, 168, 0.1) 30%,
        rgba(59, 130, 246, 0.05) 50%,
        transparent 70%
    );
    filter: blur(60px);
    animation: auroraMove 15s ease-in-out infinite;
    pointer-events: none;
}

.faq-aurora-2 {
    left: auto;
    right: -20%;
    top: -30%;
    background: radial-gradient(ellipse at center,
        rgba(236, 72, 153, 0.1) 0%,
        rgba(139, 92, 246, 0.08) 30%,
        rgba(167, 139, 250, 0.05) 50%,
        transparent 70%
    );
    animation: auroraMove2 18s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes auroraMove {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(30px) rotate(5deg) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) rotate(-3deg) scale(0.95);
        opacity: 0.5;
    }
    75% {
        transform: translateY(15px) rotate(2deg) scale(1.05);
        opacity: 0.7;
    }
}

@keyframes auroraMove2 {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.5;
    }
    33% {
        transform: translateY(-40px) rotate(-5deg) scale(1.15);
        opacity: 0.7;
    }
    66% {
        transform: translateY(25px) rotate(3deg) scale(0.9);
        opacity: 0.4;
    }
}

/* Nebulosa Central */
.faq-nebula {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(167, 139, 250, 0.06) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(196, 181, 253, 0.04) 0%, transparent 60%);
    filter: blur(40px);
    animation: nebulaPulse 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes nebulaPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Partículas Flutuantes */
.faq-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(139, 92, 246, 0.6) 50%, transparent 70%);
    box-shadow: 0 0 10px 2px rgba(139, 92, 246, 0.4);
    animation: floatParticle 8s ease-in-out infinite;
}

.particle-1 {
    width: 6px;
    height: 6px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.particle-2 {
    width: 4px;
    height: 4px;
    top: 25%;
    left: 85%;
    animation-delay: -1s;
    animation-duration: 9s;
}

.particle-3 {
    width: 8px;
    height: 8px;
    top: 60%;
    left: 5%;
    animation-delay: -2s;
    animation-duration: 6s;
}

.particle-4 {
    width: 5px;
    height: 5px;
    top: 75%;
    left: 90%;
    animation-delay: -3s;
    animation-duration: 8s;
}

.particle-5 {
    width: 3px;
    height: 3px;
    top: 40%;
    left: 15%;
    animation-delay: -4s;
    animation-duration: 10s;
}

.particle-6 {
    width: 7px;
    height: 7px;
    top: 85%;
    left: 70%;
    animation-delay: -2.5s;
    animation-duration: 7s;
}

.particle-7 {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 60%;
    animation-delay: -1.5s;
    animation-duration: 9s;
}

.particle-8 {
    width: 5px;
    height: 5px;
    top: 50%;
    left: 95%;
    animation-delay: -3.5s;
    animation-duration: 8s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) translateX(15px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px) translateX(-10px) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-40px) translateX(20px) scale(1.1);
        opacity: 0.7;
    }
}

/* Anéis de Energia */
.energy-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(139, 92, 246, 0.2);
    pointer-events: none;
}

.energy-ring-1 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse 6s ease-in-out infinite;
}

.energy-ring-2 {
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse 6s ease-in-out infinite;
    animation-delay: -3s;
}

@keyframes ringPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
        border-color: rgba(139, 92, 246, 0.1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.4;
        border-color: rgba(139, 92, 246, 0.3);
    }
}

/* Micro Estrelas de Fundo */
.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 100px 50px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 200px 150px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 300px 80px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 400px 180px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 500px 50px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 600px 120px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 700px 200px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 150px 200px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 250px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 450px 100px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 550px 180px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 650px 60px, rgba(255,255,255,0.5), transparent);
    background-size: 800px 250px;
    animation: twinkleStars 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.faq-item {
    background: rgba(15, 10, 30, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    pointer-events: auto !important;
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 5px 30px rgba(139, 92, 246, 0.15);
}

.faq-question {
    font-family: 'Inter', sans-serif;
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    color: var(--cor-branco);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    position: relative;
    z-index: 20 !important;
    pointer-events: auto !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

.faq-question:hover {
    background: rgba(139, 92, 246, 0.08);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--cor-primaria);
    transition: transform 0.3s, color 0.3s;
    pointer-events: none;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--cor-dourado);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    padding: 0 1.5rem 1.5rem;
    color: var(--cor-lilas);
    line-height: 1.7;
    font-weight: 400;
}

.faq-answer a {
    color: var(--cor-primaria);
    text-decoration: underline;
}

/* Responsividade FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 4rem 0;
    }
    
    .faq-aurora,
    .faq-aurora-2 {
        filter: blur(40px);
    }
    
    .faq-nebula {
        width: 400px;
        height: 300px;
    }
    
    .energy-ring-1 {
        width: 250px;
        height: 250px;
    }
    
    .energy-ring-2 {
        width: 400px;
        height: 400px;
    }
    
    .particle {
        display: none;
    }
    
    .particle-1,
    .particle-2,
    .particle-3,
    .particle-4 {
        display: block;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .faq-aurora,
    .faq-aurora-2 {
        opacity: 0.5;
    }
    
    .energy-ring {
        display: none;
    }
}

/* Contato */
.contato {
    background: var(--cor-fundo);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.contato .container {
    position: relative;
    z-index: 2;
}

/* Fundo de Estrelas Estáticas */
.contato-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(139, 92, 246, 0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(167, 139, 250, 0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(196, 181, 253, 0.7), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(139, 92, 246, 0.5), transparent),
        radial-gradient(1px 1px at 160px 30px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 200px 60px, rgba(167, 139, 250, 0.8), transparent),
        radial-gradient(1px 1px at 250px 20px, rgba(139, 92, 246, 0.6), transparent),
        radial-gradient(2px 2px at 300px 50px, rgba(196, 181, 253, 0.7), transparent),
        radial-gradient(1px 1px at 350px 90px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 400px 30px, rgba(139, 92, 246, 0.7), transparent),
        radial-gradient(1px 1px at 450px 70px, rgba(167, 139, 250, 0.6), transparent),
        radial-gradient(2px 2px at 500px 40px, rgba(196, 181, 253, 0.8), transparent),
        radial-gradient(1px 1px at 550px 80px, rgba(139, 92, 246, 0.5), transparent),
        radial-gradient(2px 2px at 600px 20px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 650px 60px, rgba(167, 139, 250, 0.6), transparent),
        radial-gradient(2px 2px at 700px 90px, rgba(139, 92, 246, 0.8), transparent),
        radial-gradient(1px 1px at 750px 35px, rgba(196, 181, 253, 0.5), transparent),
        radial-gradient(2px 2px at 800px 75px, rgba(255, 255, 255, 0.6), transparent);
    background-size: 850px 120px;
    animation: twinkleStars 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes twinkleStars {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Constelação SVG */
.contato-constellation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    height: auto;
    opacity: 0.4;
    pointer-events: none;
}

.contato-constellation svg {
    width: 100%;
    height: auto;
}

.constellation-star {
    animation: pulseGlow 3s ease-in-out infinite;
}

.constellation-star:nth-child(odd) {
    animation-delay: 0.5s;
}

.constellation-star:nth-child(3n) {
    animation-delay: 1s;
}

@keyframes pulseGlow {
    0%, 100% { 
        opacity: 0.6;
        filter: drop-shadow(0 0 2px rgba(139, 92, 246, 0.5));
    }
    50% { 
        opacity: 1;
        filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.8));
    }
}

.constellation-line {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawLine 4s ease-in-out infinite;
}

@keyframes drawLine {
    0% { stroke-dashoffset: 100; opacity: 0.1; }
    50% { stroke-dashoffset: 0; opacity: 0.4; }
    100% { stroke-dashoffset: -100; opacity: 0.1; }
}

/* Estrelas Cadentes */
.shooting-star {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0), rgba(139, 92, 246, 1), rgba(255, 255, 255, 1));
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transform: rotate(-45deg);
}

.shooting-star::before {
    content: '';
    position: absolute;
    right: 0;
    top: -1px;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.8),
                0 0 20px 4px rgba(139, 92, 246, 0.6);
}

.shooting-star-1 {
    top: 20%;
    left: 10%;
    animation: shootingStar 6s ease-in-out infinite;
    animation-delay: 0s;
}

.shooting-star-2 {
    top: 40%;
    left: 60%;
    animation: shootingStar 6s ease-in-out infinite;
    animation-delay: 2s;
}

.shooting-star-3 {
    top: 15%;
    left: 80%;
    animation: shootingStar 6s ease-in-out infinite;
    animation-delay: 4s;
}

.shooting-star-4 {
    top: 60%;
    left: 30%;
    animation: shootingStar 6s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes shootingStar {
    0% {
        opacity: 0;
        transform: rotate(-45deg) translateX(0);
    }
    5% {
        opacity: 1;
    }
    20% {
        opacity: 1;
        transform: rotate(-45deg) translateX(300px);
    }
    25% {
        opacity: 0;
        transform: rotate(-45deg) translateX(400px);
    }
    100% {
        opacity: 0;
        transform: rotate(-45deg) translateX(400px);
    }
}

/* Brilho Central */
.contato::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.contato-texto {
    font-family: 'Inter', sans-serif;
    color: var(--cor-lilas);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.7;
}

.btn-whatsapp {
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: var(--cor-branco);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 2;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Responsividade Contato */
@media (max-width: 768px) {
    .contato {
        padding: 4rem 0;
    }
    
    .shooting-star {
        width: 60px;
    }
    
    @keyframes shootingStar {
        0% {
            opacity: 0;
            transform: rotate(-45deg) translateX(0);
        }
        5% {
            opacity: 1;
        }
        20% {
            opacity: 1;
            transform: rotate(-45deg) translateX(150px);
        }
        25% {
            opacity: 0;
            transform: rotate(-45deg) translateX(200px);
        }
        100% {
            opacity: 0;
            transform: rotate(-45deg) translateX(200px);
        }
    }
    
    .contato-constellation {
        opacity: 0.25;
    }
}

@media (max-width: 480px) {
    .shooting-star {
        width: 40px;
    }
    
    .contato::before {
        width: 300px;
        height: 150px;
    }
}

/* ============================================
   FORMULÁRIO
   ============================================ */
.form-section {
    padding: 4rem 0;
    min-height: 80vh;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 3rem;
}

.form-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: var(--cor-branco);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.form-subtitle {
    font-family: 'Inter', sans-serif;
    color: var(--cor-lilas);
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.7;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label {
    font-family: 'Inter', sans-serif;
    display: block;
    color: var(--cor-branco);
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.required {
    color: var(--cor-destaque);
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="time"] {
    font-family: 'Inter', sans-serif;
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.5);
    color: var(--cor-branco);
    font-size: 1rem;
    transition: border-color 0.3s;
    font-weight: 400;
}

input:focus {
    outline: none;
    border-color: var(--cor-primaria);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-label {
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cor-lilas);
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-section-label {
    color: var(--cor-branco);
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.error-message {
    color: #EF4444;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: block;
}

.field-hint {
    color: rgba(167, 139, 250, 0.8);
    font-size: 0.8rem;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(167, 139, 250, 0.08);
    border-left: 2px solid rgba(167, 139, 250, 0.4);
    border-radius: 0 6px 6px 0;
    line-height: 1.4;
}

.form-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-submit {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
    color: var(--cor-branco);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    letter-spacing: 0.02em;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--sombra);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-link {
    text-align: center;
    color: var(--cor-lilas);
    text-decoration: none;
    transition: color 0.3s;
}

.btn-link:hover {
    color: var(--cor-primaria);
}

/* ============================================
   CHECKOUT
   ============================================ */
.checkout-section {
    padding: 4rem 0;
    min-height: 80vh;
}

.checkout-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.checkout-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: var(--cor-branco);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.checkout-resumo,
.checkout-pagamento {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    padding: 2rem;
}

.checkout-resumo h3,
.checkout-pagamento h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--cor-branco);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
    padding-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.resumo-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.resumo-item:last-child {
    border-bottom: none;
}

.resumo-item strong {
    color: var(--cor-dourado);
    display: block;
    margin-bottom: 0.3rem;
}

.resumo-item span {
    color: var(--cor-lilas);
}

.preferencias-list {
    list-style: none;
    margin-top: 0.5rem;
}

.preferencias-list li {
    color: var(--cor-lilas);
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
}

.preferencias-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--cor-primaria);
}

.pagamento-item {
    margin-bottom: 1.5rem;
}

.pagamento-descricao {
    color: var(--cor-lilas);
    margin-bottom: 0.5rem;
}

.pagamento-valor {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: var(--cor-dourado);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.pagamento-info {
    background: rgba(139, 92, 246, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.pagamento-info p {
    color: var(--cor-branco);
    margin-bottom: 0.5rem;
}

.pagamento-info ul {
    list-style: none;
    padding-left: 0;
}

.pagamento-info li {
    font-family: 'Inter', sans-serif;
    color: var(--cor-lilas);
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
    font-weight: 400;
}

.pagamento-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--cor-primaria);
}

.pagamento-form {
    margin-top: 1.5rem;
}

.btn-pagamento {
    font-family: 'Inter', sans-serif;
    width: 100%;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
    color: var(--cor-branco);
    padding: 1.2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    letter-spacing: 0.02em;
}

.btn-pagamento:hover {
    transform: translateY(-2px);
    box-shadow: var(--sombra);
}

.pagamento-aviso {
    margin-top: 1rem;
    text-align: center;
    color: var(--cor-destaque);
    font-size: 0.85rem;
}

.checkout-actions {
    text-align: center;
}

/* ============================================
   SUCESSO
   ============================================ */
.sucesso-section {
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.sucesso-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 3rem;
}

.sucesso-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.sucesso-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: var(--cor-branco);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.sucesso-texto {
    font-family: 'Inter', sans-serif;
    color: var(--cor-lilas);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.7;
}

.sucesso-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-download {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
    color: var(--cor-branco);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    letter-spacing: 0.02em;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: var(--sombra);
}

.btn-email {
    background: rgba(139, 92, 246, 0.2);
    color: var(--cor-branco);
    padding: 1rem 2rem;
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-email:hover {
    background: rgba(139, 92, 246, 0.3);
}

.btn-email:disabled {
    cursor: not-allowed;
}

.email-status {
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 0.95rem;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.email-status.sucesso {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

.email-status.erro {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.email-status small {
    display: block;
    margin-top: 0.5rem;
    opacity: 0.8;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.sucesso-info {
    background: rgba(139, 92, 246, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.sucesso-info p {
    color: var(--cor-lilas);
    margin-bottom: 0.8rem;
}

.sucesso-actions-secondary {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}


/* ============================================
   WHATSAPP FLOAT
   ============================================ */
/* Botão Instagram Flutuante - Design idêntico ao WhatsApp */


/* Botão WhatsApp Melhorado */
.btn-whatsapp-sucesso {
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--cor-branco);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35),
                0 0 0 0 rgba(37, 211, 102, 0.4);
    letter-spacing: 0.02em;
    min-width: 240px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.btn-whatsapp-sucesso::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-whatsapp-sucesso:hover::before {
    left: 100%;
}

.btn-whatsapp-sucesso:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5),
                0 0 0 4px rgba(37, 211, 102, 0.2);
    background: linear-gradient(135deg, #2FE576 0%, #25D366 100%);
}

.btn-whatsapp-sucesso:active {
    transform: translateY(-1px) scale(0.98);
}

.whatsapp-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    padding: 4px;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.btn-whatsapp-sucesso:hover .whatsapp-icon-wrapper {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(5deg) scale(1.1);
}

.whatsapp-icon-wrapper svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-text {
    position: relative;
    z-index: 1;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.whatsapp-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.btn-whatsapp-sucesso:hover .whatsapp-shine {
    opacity: 1;
    animation: shine 1.5s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg);
        opacity: 0.3;
    }
}

/* Responsivo WhatsApp Button */
@media (max-width: 768px) {
    .btn-whatsapp-sucesso {
        width: 100%;
        max-width: 320px;
        padding: 1.1rem 2rem;
        font-size: 1rem;
        min-width: auto;
    }
    
    .whatsapp-icon-wrapper {
        width: 26px;
        height: 26px;
    }
    
    .whatsapp-icon-wrapper svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .btn-whatsapp-sucesso {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        gap: 0.6rem;
    }
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-branco);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--cor-fundo);
    color: var(--cor-branco);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ============================================
   RODAPÉ
   ============================================ */
.footer {
    background: var(--cor-fundo-claro);
    padding: 4rem 0 0;
    border-top: 1px solid rgba(139, 92, 246, 0.15);
}

/* Grid do Footer */
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

/* Colunas */
.footer-col {
    display: flex;
    flex-direction: column;
}

/* Brand / Logo */
.footer-brand {
    max-width: 280px;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-dourado));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    color: rgba(233, 213, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Ícones Sociais */
.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--cor-lilas);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--cor-primaria);
    border-color: var(--cor-primaria);
    color: var(--cor-branco);
    transform: translateY(-3px);
}

/* Títulos das Colunas */
.footer-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--cor-branco);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--cor-primaria);
    border-radius: 2px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: rgba(233, 213, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--cor-primaria);
    padding-left: 5px;
}

/* Contato */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.9rem;
    color: rgba(233, 213, 255, 0.6);
    font-size: 0.9rem;
}

.footer-contact li svg {
    color: var(--cor-primaria);
    flex-shrink: 0;
}

/* Divisor */
.footer-divider {
    height: 1px;
    background: rgba(139, 92, 246, 0.15);
}

/* Rodapé Inferior */
.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.footer-disclaimer {
    color: rgba(233, 213, 255, 0.4);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-copyright {
    color: rgba(233, 213, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

/* Responsivo - Tablet */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-desc {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Responsivo - Mobile */
@media (max-width: 640px) {
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact li {
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 1000;
        position: relative;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--cor-fundo);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(139, 92, 246, 0.2);
        z-index: 999;
        overflow-y: auto;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    /* Botão CTA Menu Mobile */
    .btn-cta-menu {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
        text-align: center;
        margin-top: 1rem;
    }
    
    .btn-cta-menu::after {
        filter: blur(8px);
    }
    
    .btn-cta-menu:hover::after {
        filter: blur(12px);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-wrapper {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkout-content {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .btn-cta-hero {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .form-wrapper {
        padding: 1.5rem 1rem;
    }

    .sucesso-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   LOADING OVERLAY
   ============================================ */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

#loading-overlay.active {
    opacity: 1;
}

.loading-content {
    text-align: center;
    color: var(--cor-branco);
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(139, 92, 246, 0.3);
    border-top-color: var(--cor-primaria);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    font-size: 1.1rem;
    color: var(--cor-lilas);
    margin-top: 1rem;
}

/* ============================================
   BARRA DE PROGRESSO
   ============================================ */
.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cor-primaria), var(--cor-dourado));
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    text-align: center;
    color: var(--cor-lilas);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* ============================================
   CONTADOR DE URGÊNCIA
   ============================================ */
.contador-urgencia {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    margin: 2rem 0;
}

.contador-urgencia strong {
    color: var(--cor-dourado);
    font-size: 1.2rem;
}

.contador-urgencia p {
    color: var(--cor-lilas);
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* ============================================
   SELOS DE SEGURANÇA
   ============================================ */
.selos-seguranca {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.selo-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cor-lilas);
    font-size: 0.9rem;
}

.selo-item svg {
    width: 20px;
    height: 20px;
    color: var(--cor-primaria);
}

/* ============================================
   PREVIEW DO PDF
   ============================================ */
.pdf-preview {
    max-width: 300px;
    margin: 2rem auto;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
    transition: transform 0.3s;
}

.pdf-preview:hover {
    transform: scale(1.05);
}

.pdf-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.pdf-preview-caption {
    background: rgba(139, 92, 246, 0.1);
    padding: 1rem;
    text-align: center;
    color: var(--cor-lilas);
    font-size: 0.9rem;
}

/* ============================================
   ANIMAÇÕES GLOBAIS
   ============================================ */

/* Animações de entrada */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animações de scroll */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.slide-up {
    transform: translateY(50px);
}

.slide-up.animated {
    transform: translateY(0);
}

.slide-left {
    transform: translateX(-50px);
}

.slide-left.animated {
    transform: translateX(0);
}

.slide-right {
    transform: translateX(50px);
}

.slide-right.animated {
    transform: translateX(0);
}

/* Animação para sucesso icon */
.sucesso-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.sucesso-icon svg {
    color: var(--cor-primaria);
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5));
}

/* ============================================
   ALERT ERROR - Estilos Animados
   ============================================ */

.alert.alert-error {
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    padding: 0.625rem 0.875rem;
    margin-bottom: 1rem;
    color: #fca5a5;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    position: relative;
    overflow: hidden;
    animation: alertSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 4px rgba(239, 68, 68, 0.1);
}

.alert.alert-error::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(239, 68, 68, 0.03) 50%,
        transparent 100%
    );
    animation: alertShimmer 5s ease-in-out infinite;
}

@keyframes alertSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-5px) scale(0.99);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes alertShimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.alert-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    position: relative;
}

.alert-icon-svg {
    width: 14px;
    height: 14px;
    color: #ef4444;
    filter: drop-shadow(0 0 3px rgba(239, 68, 68, 0.3));
    animation: alertIconPulse 2.5s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.alert-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: alertIconGlow 2.5s ease-in-out infinite;
    z-index: 1;
}

@keyframes alertIconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.03);
        opacity: 0.97;
    }
}

@keyframes alertIconGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.alert-content {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #fca5a5;
    animation: alertTextFadeIn 0.3s ease-out 0.05s both;
    letter-spacing: 0.01em;
}

.alert-content strong {
    color: #ef4444;
    font-weight: 600;
    display: inline;
    margin-right: 0.25rem;
}

@keyframes alertTextFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-3px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .alert.alert-error {
        padding: 0.5625rem 0.75rem;
        gap: 0.5625rem;
    }
    
    .alert-icon {
        width: 14px;
        height: 14px;
    }
    
    .alert-icon-svg {
        width: 12px;
        height: 12px;
    }
    
    .alert-content {
        font-size: 0.6875rem;
        line-height: 1.35;
    }
}

@media (max-width: 480px) {
    .alert.alert-error {
        padding: 0.5rem 0.625rem;
        gap: 0.5rem;
    }
    
    .alert-icon {
        width: 12px;
        height: 12px;
    }
    
    .alert-icon-svg {
        width: 10px;
        height: 10px;
    }
    
    .alert-content {
        font-size: 0.625rem;
        line-height: 1.3;
    }
}

