/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* SEÇÃO HERO */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6a1b9a 0%, #1a237e 50%, #0d1b2a 100%);
    overflow: hidden;
    padding: 60px 0;
}

/* Container de partículas */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Partículas luminosas */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.8) 0%, rgba(138, 43, 226, 0.6) 50%, transparent 100%);
    border-radius: 50%;
    animation: float 8s infinite linear;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { top: 20%; left: 80%; animation-delay: 1s; animation-duration: 15s; }
.particle:nth-child(3) { top: 60%; left: 20%; animation-delay: 2s; animation-duration: 10s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 3s; animation-duration: 14s; }
.particle:nth-child(5) { top: 30%; left: 50%; animation-delay: 4s; animation-duration: 11s; }
.particle:nth-child(6) { top: 70%; left: 90%; animation-delay: 5s; animation-duration: 13s; }
.particle:nth-child(7) { top: 15%; left: 60%; animation-delay: 6s; animation-duration: 9s; }
.particle:nth-child(8) { top: 85%; left: 30%; animation-delay: 7s; animation-duration: 16s; }
.particle:nth-child(9) { top: 40%; left: 5%; animation-delay: 8s; animation-duration: 12s; }
.particle:nth-child(10) { top: 55%; left: 95%; animation-delay: 9s; animation-duration: 14s; }
.particle:nth-child(11) { top: 25%; left: 40%; animation-delay: 10s; animation-duration: 11s; }
.particle:nth-child(12) { top: 75%; left: 15%; animation-delay: 11s; animation-duration: 13s; }
.particle:nth-child(13) { top: 45%; left: 75%; animation-delay: 12s; animation-duration: 15s; }
.particle:nth-child(14) { top: 90%; left: 85%; animation-delay: 13s; animation-duration: 10s; }
.particle:nth-child(15) { top: 5%; left: 35%; animation-delay: 14s; animation-duration: 12s; }
.particle:nth-child(16) { top: 65%; left: 55%; animation-delay: 15s; animation-duration: 16s; }
.particle:nth-child(17) { top: 35%; left: 25%; animation-delay: 16s; animation-duration: 9s; }
.particle:nth-child(18) { top: 95%; left: 45%; animation-delay: 17s; animation-duration: 13s; }
.particle:nth-child(19) { top: 50%; left: 65%; animation-delay: 18s; animation-duration: 14s; }
.particle:nth-child(20) { top: 12%; left: 85%; animation-delay: 19s; animation-duration: 11s; }

/* Animação das partículas */
@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Efeito de nebulosa */
.nebulosa-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(106, 27, 154, 0.06) 0%, transparent 70%);
    animation: nebulosaFloat 20s ease-in-out infinite;
    z-index: 2;
}

@keyframes nebulosaFloat {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 0.9;
    }
}

/* Imagem hero */
.hero-image {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 5;
    opacity: 0.6;
    pointer-events: none;
}

.hero-img {
    max-width: 600px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 0, 128, 0.3));
    animation: heroImageFloat 6s ease-in-out infinite;
}

@keyframes heroImageFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.05);
        opacity: 0.7;
    }
}

/* Conteúdo principal */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
}

/* Selo de prova social */
.social-proof-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(34, 197, 94, 0.4);
    border-radius: 25px;
    padding: 12px 20px;
    margin: 25px auto 0 auto;
    backdrop-filter: blur(10px);
    animation: badgeFloat 3s ease-in-out infinite;
    width: fit-content;
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.badge-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.5));
}

.badge-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.badge-number {
    font-size: 1.1rem;
    font-weight: 900;
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
    line-height: 1;
}

.badge-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    line-height: 1;
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0px);
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
    }
    50% {
        transform: translateY(-3px);
        box-shadow: 0 0 25px rgba(34, 197, 94, 0.3);
    }
}

/* Título principal */
.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite, colorWave 4s ease-in-out infinite;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(0, 255, 255, 0.6),
        0 0 60px rgba(138, 43, 226, 0.4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 40px rgba(0, 255, 255, 0.6),
            0 0 60px rgba(138, 43, 226, 0.4);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(255, 255, 255, 1),
            0 0 50px rgba(0, 255, 255, 0.8),
            0 0 80px rgba(138, 43, 226, 0.6);
    }
}

@keyframes colorWave {
    0% {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 40px rgba(0, 255, 255, 0.6),
            0 0 60px rgba(138, 43, 226, 0.4);
    }
    25% {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 40px rgba(255, 0, 128, 0.6),
            0 0 60px rgba(0, 255, 255, 0.4);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 40px rgba(138, 43, 226, 0.6),
            0 0 60px rgba(255, 0, 128, 0.4);
    }
    75% {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 40px rgba(0, 255, 255, 0.6),
            0 0 60px rgba(138, 43, 226, 0.4);
    }
    100% {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 40px rgba(0, 255, 255, 0.6),
            0 0 60px rgba(138, 43, 226, 0.4);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Subtítulo */
.hero-subtitle {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Botão CTA */
.cta-button {
    position: relative;
    background: linear-gradient(45deg, #8a2be2, #1a237e, #00ffff);
    background-size: 200% 200%;
    border: none;
    padding: 16px 40px;
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: buttonPulse 2s ease-in-out infinite, gradientFlow 3s ease-in-out infinite, subtleGlow 4s ease-in-out infinite;
    box-shadow: 
        0 0 20px rgba(138, 43, 226, 0.5),
        0 0 40px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 0 30px rgba(138, 43, 226, 0.7),
        0 0 50px rgba(0, 255, 255, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

@keyframes subtleGlow {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(138, 43, 226, 0.5),
            0 0 40px rgba(0, 255, 255, 0.3),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 0 25px rgba(138, 43, 226, 0.6),
            0 0 45px rgba(0, 255, 255, 0.4),
            inset 0 0 25px rgba(255, 255, 255, 0.15);
    }
}

.cta-text {
    position: relative;
    z-index: 3;
}

.cta-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #8a2be2, #00ffff, #8a2be2);
    background-size: 200% 200%;
    border-radius: 52px;
    z-index: 1;
    animation: glowRotate 2s linear infinite;
    opacity: 0.8;
}

@keyframes buttonPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 20px rgba(138, 43, 226, 0.5),
            0 0 40px rgba(0, 255, 255, 0.3),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 0 30px rgba(138, 43, 226, 0.7),
            0 0 60px rgba(0, 255, 255, 0.5),
            inset 0 0 30px rgba(255, 255, 255, 0.2);
    }
}

@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes glowRotate {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.cta-button:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 40px rgba(138, 43, 226, 0.8),
        0 0 80px rgba(0, 255, 255, 0.6),
        inset 0 0 40px rgba(255, 255, 255, 0.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-image {
        opacity: 0.5;
        top: 8%;
    }
    
    .hero-img {
        max-width: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .social-proof-badge {
        padding: 10px 16px;
        gap: 10px;
    }
    
    .badge-number {
        font-size: 1rem;
    }
    
    .badge-label {
        font-size: 0.8rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .particle {
        width: 3px;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .hero-image {
        opacity: 0.4;
        top: 5%;
    }
    
    .hero-img {
        max-width: 300px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
}

/* SEÇÃO PROBLEMA/DOR */
.problem-section {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, #0d1b2a 0%, #1a237e 50%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow: hidden;
}

/* Elementos geométricos flutuantes */
.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: geometricFloat 15s infinite linear;
}

.shape-1 {
    top: 10%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #8a2be2, #00ffff);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 0s;
    animation-duration: 20s;
}

.shape-2 {
    top: 20%;
    right: 15%;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #00ffff, #8a2be2);
    border-radius: 50%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.shape-3 {
    bottom: 30%;
    left: 20%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #8a2be2, #ff6b6b);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation-delay: 4s;
    animation-duration: 22s;
}

.shape-4 {
    top: 60%;
    right: 25%;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00ffff, #ff6b6b);
    transform: rotate(45deg);
    animation-delay: 6s;
    animation-duration: 16s;
}

.shape-5 {
    top: 40%;
    left: 5%;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #ff6b6b, #8a2be2);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation-delay: 8s;
    animation-duration: 24s;
}

.shape-6 {
    bottom: 15%;
    right: 10%;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #00ffff, #ff6b6b);
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    animation-delay: 10s;
    animation-duration: 19s;
}

.shape-7 {
    top: 70%;
    left: 50%;
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, #8a2be2, #00ffff);
    border-radius: 50%;
    animation-delay: 12s;
    animation-duration: 21s;
}

.shape-8 {
    top: 15%;
    left: 70%;
    width: 55px;
    height: 55px;
    background: linear-gradient(45deg, #ff6b6b, #8a2be2);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation-delay: 14s;
    animation-duration: 17s;
}

@keyframes geometricFloat {
    0% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-20px) rotate(90deg) scale(1.1);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-40px) rotate(180deg) scale(0.9);
        opacity: 0.15;
    }
    75% {
        transform: translateY(-20px) rotate(270deg) scale(1.05);
        opacity: 0.25;
    }
    100% {
        transform: translateY(0px) rotate(360deg) scale(1);
        opacity: 0.1;
    }
}

/* Conteúdo da seção */
.problem-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

/* Título com efeito glitch */
.problem-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    animation: glitch 3s infinite;
}

.problem-title::before,
.problem-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.problem-title::before {
    animation: glitch-1 0.5s infinite;
    color: #00ffff;
    z-index: -1;
}

.problem-title::after {
    animation: glitch-2 0.5s infinite;
    color: #ff6b6b;
    z-index: -2;
}

@keyframes glitch {
    0%, 90%, 100% {
        text-shadow: 
            0.05em 0 0 #00ffff,
            -0.05em -0.025em 0 #ff6b6b,
            0.025em 0.05em 0 #8a2be2;
    }
    10% {
        text-shadow: 
            0.05em 0 0 #ff6b6b,
            -0.05em -0.025em 0 #8a2be2,
            0.025em 0.05em 0 #00ffff;
    }
    20% {
        text-shadow: 
            -0.05em -0.025em 0 #00ffff,
            0.025em 0.025em 0 #ff6b6b,
            -0.05em -0.05em 0 #8a2be2;
    }
    30% {
        text-shadow: 
            0.025em 0.05em 0 #ff6b6b,
            0.05em 0 0 #8a2be2,
            0 -0.05em 0 #00ffff;
    }
    40% {
        text-shadow: 
            0.025em 0.05em 0 #8a2be2,
            0.05em 0 0 #00ffff,
            0 -0.05em 0 #ff6b6b;
    }
    50% {
        text-shadow: 
            -0.05em 0 0 #8a2be2,
            0.025em -0.025em 0 #00ffff,
            -0.05em -0.05em 0 #ff6b6b;
    }
    60% {
        text-shadow: 
            0.025em -0.025em 0 #ff6b6b,
            -0.05em -0.05em 0 #8a2be2,
            0.025em -0.025em 0 #00ffff;
    }
    70% {
        text-shadow: 
            0.05em 0 0 #00ffff,
            -0.05em -0.025em 0 #ff6b6b,
            0.025em 0.05em 0 #8a2be2;
    }
    80% {
        text-shadow: 
            -0.05em -0.025em 0 #8a2be2,
            0.025em 0.025em 0 #00ffff,
            -0.05em -0.05em 0 #ff6b6b;
    }
}

@keyframes glitch-1 {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
}

@keyframes glitch-2 {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(2px, 2px);
    }
    40% {
        transform: translate(2px, -2px);
    }
    60% {
        transform: translate(-2px, 2px);
    }
    80% {
        transform: translate(-2px, -2px);
    }
}

/* Container dos cards */
.pain-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

/* Cards de dor */
.pain-card {
    position: relative;
    background: rgba(26, 35, 126, 0.1);
    border: 2px solid;
    border-image: linear-gradient(45deg, #8a2be2, #00ffff, #8a2be2) 1;
    border-radius: 15px;
    padding: 20px 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
}

/* Centralizar os 3 cards da segunda linha */
/* Layout 3+3 apenas no desktop */
@media (min-width: 769px) {
    .pain-card:nth-child(4) {
        grid-column: 1;
    }

    .pain-card:nth-child(5) {
        grid-column: 2;
    }

    .pain-card:nth-child(6) {
        grid-column: 3;
    }
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.1), rgba(0, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.pain-card:hover::before {
    opacity: 1;
}

.pain-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(138, 43, 226, 0.3),
        0 0 30px rgba(0, 255, 255, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
}

/* Ícones dos cards */
.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.pain-card:hover .card-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.8));
}

/* Texto dos cards */
.card-text {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.pain-card:hover .card-text {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* Aura dos cards */
.card-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0.8);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.pain-card:hover .card-aura {
    opacity: 1;
    transform: translate(-50%, -50%) scale(2);
    animation: auraPulse 2s ease-in-out infinite;
}

@keyframes auraPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0.5;
    }
}

/* Responsividade para cards */
@media (max-width: 768px) {
    .pain-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pain-card {
        padding: 25px 15px;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    .card-text {
        font-size: 1rem;
    }
    
    .problem-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .pain-card {
        padding: 20px 15px;
    }
    
    .card-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .card-text {
        font-size: 0.9rem;
    }
    
    .problem-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .problem-section {
        padding: 60px 15px;
    }
}

/* SEÇÃO SOLUÇÃO/PROMESSA */
.solution-section {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow: hidden;
}

/* Portal circular brilhante */
.portal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    z-index: 1;
}

.portal-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    animation: portalRotate 10s linear infinite;
}

.ring-1 {
    width: 400px;
    height: 400px;
    border-color: rgba(138, 43, 226, 0.3);
    animation-duration: 15s;
    animation-direction: reverse;
}

.ring-2 {
    width: 300px;
    height: 300px;
    top: 50px;
    left: 50px;
    border-color: rgba(0, 255, 255, 0.4);
    animation-duration: 12s;
}

.ring-3 {
    width: 200px;
    height: 200px;
    top: 100px;
    left: 100px;
    border-color: rgba(255, 107, 107, 0.3);
    animation-duration: 8s;
    animation-direction: reverse;
}

.portal-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.8) 0%, rgba(138, 43, 226, 0.6) 50%, transparent 100%);
    border-radius: 50%;
    animation: portalPulse 3s ease-in-out infinite;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.5);
}

.portal-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.portal-particles::before,
.portal-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.8) 0%, transparent 100%);
    border-radius: 50%;
    animation: particleOrbit 8s linear infinite;
}

.portal-particles::before {
    top: 20%;
    left: 50%;
    animation-delay: 0s;
}

.portal-particles::after {
    bottom: 20%;
    right: 50%;
    animation-delay: 4s;
}

@keyframes portalRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes portalPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

@keyframes particleOrbit {
    0% { transform: rotate(0deg) translateX(150px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}

/* Conteúdo da solução */
.solution-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
}

.solution-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes goldShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.solution-description {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Cristais luminosos */
.crystal-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.crystal-pillar {
    position: relative;
    background: rgba(26, 33, 62, 0.3);
    border: 2px solid;
    border-image: linear-gradient(45deg, #8a2be2, #00ffff, #ff6b6b) 1;
    border-radius: 15px;
    padding: 25px 15px;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.crystal-pillar:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(138, 43, 226, 0.4),
        0 0 40px rgba(0, 255, 255, 0.3);
}

.crystal-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.6));
    transition: all 0.3s ease;
}

.crystal-pillar:hover .crystal-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 25px rgba(0, 255, 255, 0.9));
}

.pillar-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.crystal-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.crystal-pillar:hover .crystal-particles {
    opacity: 1;
}

.crystal-particles::before,
.crystal-particles::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.8) 0%, transparent 100%);
    border-radius: 50%;
    animation: particleRise 2s ease-out infinite;
}

.crystal-particles::before {
    bottom: 20px;
    left: 30%;
    animation-delay: 0s;
}

.crystal-particles::after {
    bottom: 20px;
    right: 30%;
    animation-delay: 1s;
}

@keyframes particleRise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

/* SEÇÃO AUTORIDADE/CREDIBILIDADE */
.authority-section {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow: hidden;
}

/* Background com constelações */
.constellation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
    border-radius: 50%;
    animation: starTwinkle 3s ease-in-out infinite;
}

.star-1 { top: 10%; left: 15%; animation-delay: 0s; }
.star-2 { top: 20%; left: 80%; animation-delay: 0.5s; }
.star-3 { top: 60%; left: 10%; animation-delay: 1s; }
.star-4 { top: 80%; left: 70%; animation-delay: 1.5s; }
.star-5 { top: 30%; left: 50%; animation-delay: 2s; }
.star-6 { top: 70%; left: 90%; animation-delay: 2.5s; }
.star-7 { top: 15%; left: 60%; animation-delay: 0.3s; }
.star-8 { top: 85%; left: 30%; animation-delay: 0.8s; }
.star-9 { top: 40%; left: 5%; animation-delay: 1.3s; }
.star-10 { top: 55%; left: 95%; animation-delay: 1.8s; }

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

.constellation-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

/* Conteúdo da autoridade */
.authority-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    text-align: center;
}

.authority-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

.authority-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

/* Avatar do instrutor */
.instructor-avatar {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.3) 0%, rgba(0, 255, 255, 0.2) 50%, transparent 100%);
    border-radius: 50%;
    animation: avatarGlow 4s ease-in-out infinite;
}

.avatar-image {
    position: relative;
    z-index: 3;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(45deg, #8a2be2, #00ffff);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.avatar-placeholder {
    font-size: 5rem;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.instructor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 50%;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
    transition: all 0.3s ease;
}

.instructor-photo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
}

.avatar-aura {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid transparent;
    border-radius: 50%;
    background: linear-gradient(45deg, #8a2be2, #00ffff, #8a2be2);
    background-clip: border-box;
    animation: auraRotate 6s linear infinite;
    opacity: 0.6;
}

@keyframes avatarGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

@keyframes auraRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Stats holográficos */
.authority-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-display {
    position: relative;
    background: rgba(26, 33, 62, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    padding: 20px 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-display:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.holographic-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-display:hover .holographic-border {
    opacity: 1;
}

/* Logos de parceiros */
.partners-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(20px);
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background: rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.5);
    color: #fff;
    transform: translateY(-5px);
}

/* SEÇÃO MÓDULOS DO CURSO */
.modules-section {
    position: relative;
    min-height: auto;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 40px 20px;
    overflow: hidden;
}

.modules-content {
    max-width: 1200px;
    margin: 0 auto;
}

.modules-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    text-align: center;
    margin-bottom: 80px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

/* Timeline vertical futurista */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #8a2be2, #00ffff, #ff6b6b, #8a2be2);
    transform: translateX(-50%);
    animation: timelineFlow 10s linear infinite;
}

@keyframes timelineFlow {
    0% {
        background: linear-gradient(to bottom, #8a2be2, #00ffff, #ff6b6b, #8a2be2);
    }
    100% {
        background: linear-gradient(to bottom, #ff6b6b, #8a2be2, #00ffff, #8a2be2);
    }
}

.module-station {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
}

.module-station:nth-child(even) {
    flex-direction: row-reverse;
}

.station-connection {
    position: absolute;
    left: 50%;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.6), transparent);
    transform: translateX(-50%);
    z-index: 2;
}

.module-station:nth-child(even) .station-connection {
    background: linear-gradient(270deg, transparent, rgba(138, 43, 226, 0.6), transparent);
}

.module-card {
    background: rgba(26, 33, 62, 0.3);
    border: 2px solid;
    border-image: linear-gradient(45deg, #8a2be2, #00ffff, #ff6b6b) 1;
    border-radius: 15px;
    padding: 25px 20px;
    backdrop-filter: blur(15px);
    width: 320px;
    position: relative;
    z-index: 3;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.module-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(138, 43, 226, 0.4),
        0 0 40px rgba(0, 255, 255, 0.3);
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.1), rgba(0, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.module-card:hover::before {
    opacity: 1;
}

.module-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.6));
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.module-card:hover .module-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 25px rgba(0, 255, 255, 0.9));
}

.module-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.module-subtitle {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.module-details {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    padding: 40px 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 4;
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.module-card:hover .module-details {
    opacity: 1;
    transform: translateY(0);
}

.module-details ul {
    list-style: none;
    padding: 0;
}

.module-details li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-family: 'Exo 2', sans-serif;
}

.module-details li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00ffff;
    font-size: 0.8rem;
}

/* Responsividade para as novas seções */
@media (max-width: 768px) {
    .crystal-pillars {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .authority-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .authority-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .module-station {
        flex-direction: column !important;
        align-items: center;
    }
    
    .module-card {
        width: 100%;
        max-width: 400px;
    }
    
    .station-connection {
        display: none;
    }
    
    .timeline-line {
        left: 20px;
        width: 2px;
    }
    
    .portal-container {
        width: 300px;
        height: 300px;
    }
    
    .ring-1 {
        width: 300px;
        height: 300px;
    }
    
    .ring-2 {
        width: 225px;
        height: 225px;
        top: 37.5px;
        left: 37.5px;
    }
    
    .ring-3 {
        width: 150px;
        height: 150px;
        top: 75px;
        left: 75px;
    }
}

@media (max-width: 480px) {
    .portal-container {
        width: 250px;
        height: 250px;
    }
    
    .ring-1 {
        width: 250px;
        height: 250px;
    }
    
    .ring-2 {
        width: 187.5px;
        height: 187.5px;
        top: 31.25px;
        left: 31.25px;
    }
    
    .ring-3 {
        width: 125px;
        height: 125px;
        top: 62.5px;
        left: 62.5px;
    }
    
    .avatar-image {
        width: 150px;
        height: 150px;
    }
    
    .avatar-placeholder {
        font-size: 3.5rem;
    }
    
    .instructor-photo {
        width: 100%;
        height: 100%;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .partners-logos {
        gap: 20px;
    }
    
    .partner-logo {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* SEÇÃO BÔNUS */
.bonus-section {
    position: relative;
    min-height: 80vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    overflow: hidden;
}

/* Sistema solar */
.solar-system {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    z-index: 1;
}

/* Sol central */
.central-sun {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    z-index: 10;
}

.sun-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #ffd700 0%, #ff8c00 50%, #ff4500 100%);
    border-radius: 50%;
    animation: sunPulse 4s ease-in-out infinite;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.8),
        0 0 60px rgba(255, 140, 0, 0.6),
        0 0 90px rgba(255, 69, 0, 0.4);
}

.sun-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: sunAura 6s ease-in-out infinite;
}

.sun-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    pointer-events: none;
}

.sun-particles::before,
.sun-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.8) 0%, transparent 100%);
    border-radius: 50%;
    animation: sunParticleOrbit 8s linear infinite;
}

.sun-particles::before {
    top: 0;
    left: 50%;
    animation-delay: 0s;
}

.sun-particles::after {
    bottom: 0;
    right: 50%;
    animation-delay: 4s;
}

@keyframes sunPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 0 30px rgba(255, 215, 0, 0.8),
            0 0 60px rgba(255, 140, 0, 0.6),
            0 0 90px rgba(255, 69, 0, 0.4);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 
            0 0 40px rgba(255, 215, 0, 1),
            0 0 80px rgba(255, 140, 0, 0.8),
            0 0 120px rgba(255, 69, 0, 0.6);
    }
}

@keyframes sunAura {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.9;
    }
}

@keyframes sunParticleOrbit {
    0% {
        transform: rotate(0deg) translateX(100px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(100px) rotate(-360deg);
    }
}

/* Planetas de bônus */
.bonus-planet {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    cursor: pointer;
}

.planet-1 {
    animation: planetOrbit1 20s linear infinite;
}

.planet-2 {
    animation: planetOrbit2 25s linear infinite;
}

.planet-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: planetGlow 3s ease-in-out infinite;
}

.planet-surface {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #8a2be2, #00ffff, #ff6b6b);
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: planetSurface 4s ease-in-out infinite, planetRotate 10s linear infinite;
    box-shadow: 
        0 0 20px rgba(138, 43, 226, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.planet-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
    z-index: 2;
}

.planet-trail {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.3), transparent);
    transform: translate(-50%, -50%) rotate(0deg);
    animation: trailGlow 2s ease-in-out infinite;
}

@keyframes planetOrbit1 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(300px) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(300px) rotate(-360deg);
    }
}

@keyframes planetOrbit2 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(350px) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(-360deg) translateX(350px) rotate(360deg);
    }
}

@keyframes planetGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes planetSurface {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes planetRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes trailGlow {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.6;
    }
}

/* Cards de bônus */
.bonus-card {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid;
    border-image: linear-gradient(45deg, #8a2be2, #00ffff, #ff6b6b) 1;
    border-radius: 15px;
    padding: 20px 15px;
    backdrop-filter: blur(15px);
    width: 200px;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 5;
}

.bonus-planet:hover .bonus-card {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
}

.bonus-title {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-description {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    line-height: 1.3;
}

.bonus-value {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Conteúdo da seção */
.bonus-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
}

.bonus-section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

/* Display holográfico do total */
.bonus-total-display {
    margin-bottom: 40px;
}

.total-hologram {
    position: relative;
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid;
    border-image: linear-gradient(45deg, #8a2be2, #00ffff, #ff6b6b) 1;
    border-radius: 20px;
    padding: 40px 60px;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.hologram-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.total-hologram:hover .hologram-frame {
    opacity: 1;
}

.total-text {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ffd700, #00ffff, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.total-label {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hologram-scan {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.8), transparent);
    animation: hologramScan 3s ease-in-out infinite;
}

@keyframes hologramScan {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(100px);
        opacity: 0;
    }
}

.bonus-subtitle {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsividade para seção de bônus */
@media (max-width: 768px) {
    .solar-system {
        width: 600px;
        height: 600px;
    }
    
    .central-sun {
        width: 80px;
        height: 80px;
    }
    
    .sun-core {
        width: 60px;
        height: 60px;
    }
    
    .bonus-planet {
        width: 80px;
        height: 80px;
    }
    
    .planet-surface {
        width: 60px;
        height: 60px;
    }
    
    .planet-icon {
        font-size: 1.5rem;
    }
    
    .bonus-card {
        width: 180px;
        padding: 15px 10px;
        top: 100px;
    }
    
    .bonus-title {
        font-size: 0.9rem;
    }
    
    .bonus-description {
        font-size: 0.8rem;
    }
    
    .bonus-value {
        font-size: 0.9rem;
    }
    
    .total-text {
        font-size: 3rem;
    }
    
    .total-label {
        font-size: 1rem;
    }
    
    .total-hologram {
        padding: 30px 40px;
    }
}

@media (max-width: 480px) {
    .solar-system {
        width: 400px;
        height: 400px;
    }
    
    .central-sun {
        width: 60px;
        height: 60px;
    }
    
    .sun-core {
        width: 40px;
        height: 40px;
    }
    
    .bonus-planet {
        width: 60px;
        height: 60px;
    }
    
    .planet-surface {
        width: 45px;
        height: 45px;
    }
    
    .planet-icon {
        font-size: 1.2rem;
    }
    
    .bonus-card {
        width: 150px;
        padding: 12px 8px;
        top: 80px;
    }
    
    .bonus-title {
        font-size: 0.8rem;
    }
    
    .bonus-description {
        font-size: 0.7rem;
    }
    
    .bonus-value {
        font-size: 0.8rem;
    }
    
    .total-text {
        font-size: 2.5rem;
    }
    
    .total-label {
        font-size: 0.9rem;
    }
    
    .total-hologram {
        padding: 25px 30px;
    }
    
    .bonus-section-title {
        font-size: 1.8rem;
    }
}

/* SEÇÃO DEPOIMENTOS */
.testimonials-section {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow: hidden;
}

/* Background com galáxia em movimento */
.galaxy-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.galaxy-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.layer-1 {
    background: radial-gradient(ellipse at center, rgba(138, 43, 226, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 20% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 40%),
                radial-gradient(ellipse at 80% 70%, rgba(255, 107, 107, 0.1) 0%, transparent 40%);
    animation: galaxyMove1 60s linear infinite;
}

.layer-2 {
    background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 30% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    animation: galaxyMove2 80s linear infinite;
}

.layer-3 {
    background: radial-gradient(ellipse at center, rgba(255, 107, 107, 0.1) 0%, transparent 70%),
                radial-gradient(ellipse at 60% 40%, rgba(0, 255, 255, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 40% 60%, rgba(138, 43, 226, 0.08) 0%, transparent 60%);
    animation: galaxyMove3 100s linear infinite;
}

.galaxy-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, rgba(0, 255, 255, 0.05) 50%, transparent 100%);
    border-radius: 50%;
    animation: galaxyCorePulse 20s ease-in-out infinite;
}

.galaxy-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.star-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: starTwinkle 8s ease-in-out infinite;
}

@keyframes galaxyMove1 {
    0% { transform: translate(-10%, -10%) rotate(0deg); }
    100% { transform: translate(-10%, -10%) rotate(360deg); }
}

@keyframes galaxyMove2 {
    0% { transform: translate(-10%, -10%) rotate(0deg); }
    100% { transform: translate(-10%, -10%) rotate(-360deg); }
}

@keyframes galaxyMove3 {
    0% { transform: translate(-10%, -10%) rotate(0deg); }
    100% { transform: translate(-10%, -10%) rotate(180deg); }
}

@keyframes galaxyCorePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Conteúdo dos depoimentos */
.testimonials-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
}

.testimonials-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

/* Grid de depoimentos */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* Cápsulas holográficas */
.testimonial-capsule {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid;
    border-image: linear-gradient(45deg, #8a2be2, #00ffff, #ff6b6b) 1;
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    min-height: 350px;
}

.testimonial-capsule:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(138, 43, 226, 0.4),
        0 0 40px rgba(0, 255, 255, 0.3);
}

.capsule-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 25px;
}

.testimonial-capsule:hover .capsule-glow {
    opacity: 1;
}

.capsule-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-capsule:hover .capsule-frame {
    opacity: 1;
}

/* Foto do aluno */
.student-photo {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder {
    font-size: 3rem;
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.6));
    z-index: 3;
}

.photo-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3) 0%, transparent 70%);
    animation: photoGlow 3s ease-in-out infinite;
}

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

/* Conteúdo do depoimento */
.testimonial-content {
    text-align: center;
    margin-bottom: 20px;
}

.student-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.testimonial-text {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 20px;
    font-style: italic;
}

/* Destaque de resultado */
.result-highlight {
    position: relative;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.result-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.8));
}

.result-text {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.neon-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.result-highlight:hover .neon-glow {
    opacity: 1;
}

/* Print de resultado */
.result-print {
    position: relative;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(138, 43, 226, 0.5);
    border-radius: 10px;
    padding: 15px;
    backdrop-filter: blur(15px);
}

.print-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    background: linear-gradient(45deg, transparent, rgba(138, 43, 226, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.result-print:hover .print-frame {
    opacity: 1;
}

.print-content {
    text-align: center;
}

.print-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.stat-before,
.stat-after {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.2rem;
}

.stat-before {
    color: rgba(255, 255, 255, 0.6);
}

.stat-arrow {
    color: #00ffff;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.stat-after {
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.print-label {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsividade para depoimentos */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-capsule {
        padding: 25px 20px;
        min-height: 300px;
    }
    
    .student-photo {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .photo-placeholder {
        font-size: 2.5rem;
    }
    
    .student-name {
        font-size: 1.1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .result-text {
        font-size: 0.9rem;
    }
    
    .stat-before,
    .stat-after {
        font-size: 1rem;
    }
    
    .stat-arrow {
        font-size: 1.2rem;
    }
    
    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .testimonial-capsule {
        padding: 20px 15px;
        min-height: 280px;
    }
    
    .student-photo {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .photo-placeholder {
        font-size: 2rem;
    }
    
    .student-name {
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
    }
    
    .result-highlight {
        padding: 12px;
    }
    
    .result-icon {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .result-text {
        font-size: 0.85rem;
    }
    
    .result-print {
        padding: 12px;
    }
    
    .stat-before,
    .stat-after {
        font-size: 0.9rem;
    }
    
    .stat-arrow {
        font-size: 1rem;
    }
    
    .print-label {
        font-size: 0.8rem;
    }
    
    .testimonials-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .testimonials-section {
        padding: 60px 15px;
    }
}

/* SEÇÃO GARANTIA */
.guarantee-section {
    position: relative;
    min-height: 50vh;
    background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    overflow: hidden;
}

/* Background com energia cósmica */
.cosmic-energy-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.energy-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid;
    animation: energyWave 8s ease-in-out infinite;
}

.wave-1 {
    width: 600px;
    height: 600px;
    border-color: rgba(138, 43, 226, 0.3);
    animation-delay: 0s;
    animation-duration: 10s;
}

.wave-2 {
    width: 800px;
    height: 800px;
    border-color: rgba(0, 255, 255, 0.2);
    animation-delay: 2s;
    animation-duration: 12s;
}

.wave-3 {
    width: 1000px;
    height: 1000px;
    border-color: rgba(255, 107, 107, 0.1);
    animation-delay: 4s;
    animation-duration: 14s;
}

.energy-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.energy-particles::before,
.energy-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.8) 0%, transparent 100%);
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
}

.energy-particles::before {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.energy-particles::after {
    bottom: 30%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes energyWave {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(50px, -50px) scale(1.5);
        opacity: 1;
    }
}

/* Conteúdo da garantia */
.guarantee-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.guarantee-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.guarantee-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Escudo energético central */
.energy-shield {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.shield-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 3px solid;
    animation: shieldRotate 10s linear infinite;
}

.ring-1 {
    width: 300px;
    height: 300px;
    border-color: rgba(138, 43, 226, 0.6);
    animation-duration: 12s;
}

.ring-2 {
    width: 350px;
    height: 350px;
    border-color: rgba(0, 255, 255, 0.4);
    animation-duration: 15s;
    animation-direction: reverse;
}

.ring-3 {
    width: 400px;
    height: 400px;
    border-color: rgba(255, 107, 107, 0.3);
    animation-duration: 18s;
}

.shield-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.3) 0%, rgba(0, 255, 255, 0.2) 50%, transparent 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: shieldPulse 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 255, 255, 0.3);
}

.shield-energy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: energyPulse 6s ease-in-out infinite;
}

.shield-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shield-particles::before,
.shield-particles::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.8) 0%, transparent 100%);
    border-radius: 50%;
    animation: particleOrbit 8s linear infinite;
}

.shield-particles::before {
    top: 20%;
    left: 50%;
    animation-delay: 0s;
}

.shield-particles::after {
    bottom: 20%;
    right: 50%;
    animation-delay: 4s;
}

@keyframes shieldRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes shieldPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

@keyframes energyPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes particleOrbit {
    0% { transform: rotate(0deg) translateX(150px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}

/* Texto principal do escudo */
.guarantee-text-main {
    text-align: center;
    z-index: 3;
}

.guarantee-days {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    margin-bottom: 5px;
    animation: textGlow 3s ease-in-out infinite;
}

.guarantee-label {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 215, 0, 1);
    }
}




.seal-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.8));
    z-index: 3;
}

.seal-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2) 0%, transparent 70%);
    animation: sealGlow 3s ease-in-out infinite;
}

.seal-crystal {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, rgba(138, 43, 226, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

@keyframes sealFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) scale(1.05);
        opacity: 1;
    }
}

@keyframes sealGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Texto de garantia */
.guarantee-description {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.guarantee-text {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-align: center;
}

.guarantee-text strong {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Ícones de proteção holográficos */
.protection-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
    position: relative;
    z-index: 10;
}

.protection-icon {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.protection-icon:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.protection-icon:hover .icon-glow {
    opacity: 1;
}

.icon-symbol {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.8));
    z-index: 3;
}

.icon-label {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
}



/* Responsividade para garantia */
@media (max-width: 768px) {
    .energy-shield {
        width: 300px;
        height: 300px;
    }
    
    .ring-1 {
        width: 225px;
        height: 225px;
    }
    
    .ring-2 {
        width: 262.5px;
        height: 262.5px;
    }
    
    .ring-3 {
        width: 300px;
        height: 300px;
    }
    
    .shield-core {
        width: 150px;
        height: 150px;
    }
    
    .guarantee-days {
        font-size: 2.5rem;
    }
    
    .guarantee-label {
        font-size: 1rem;
    }
    
    .protection-icons {
        gap: 12px;
    }
    
    .protection-icon {
        padding: 10px;
    }
    
    .icon-symbol {
        font-size: 2rem;
    }
    
    .guarantee-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .energy-shield {
        width: 250px;
        height: 250px;
    }
    
    .ring-1 {
        width: 187.5px;
        height: 187.5px;
    }
    
    .ring-2 {
        width: 218.75px;
        height: 218.75px;
    }
    
    .ring-3 {
        width: 250px;
        height: 250px;
    }
    
    .shield-core {
        width: 120px;
        height: 120px;
    }
    
    .guarantee-days {
        font-size: 2rem;
    }
    
    .guarantee-label {
        font-size: 0.9rem;
    }
    
    .protection-icons {
        gap: 10px;
    }
    
    .protection-icon {
        padding: 8px;
    }
    
    .icon-symbol {
        font-size: 1.8rem;
    }
    
    .icon-label {
        font-size: 0.8rem;
    }
    
    .guarantee-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .guarantee-section {
        padding: 60px 15px;
    }
}

/* SEÇÃO OFERTA/PREÇO */
.offer-section {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, #000000 0%, #1a0033 30%, #000033 70%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow: hidden;
}

/* Card de preços limpo */
.pricing-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    padding: 20px 25px;
    backdrop-filter: blur(15px);
    text-align: center;
    margin-bottom: 0px;
    max-width: 500px;
    width: 100%;
}

.price-header {
    margin-bottom: 20px;
}

.original-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.price-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
}

.price-value {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    font-weight: 600;
}

.current-pricing {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 15px;
}

.installment-option, .cash-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.installment-price, .cash-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.installment-text, .cash-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.installment-value, .cash-text {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #22c55e, #16a34a, #15803d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

.installment-label, .cash-method {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.divider {
    position: relative;
    margin: 10px 0;
}

.or-text {
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.price-highlight {
    background: linear-gradient(45deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.2));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 15px;
    padding: 10px;
}

.highlight-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

/* Botão CTA posicionado */
.cta-container {
    text-align: center;
    margin-top: 15px;
}

/* Timer simplificado */
.countdown-simple {
    text-align: center;
    margin-bottom: 20px;
}

.timer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    min-width: 80px;
}

.timer-number {
    font-size: 2rem;
    font-weight: 900;
    color: #22c55e;
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.7);
}

.timer-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-top: 5px;
}

.timer-separator {
    font-size: 1.5rem;
    font-weight: 900;
    color: #16a34a;
    text-shadow: 0 0 10px rgba(22, 163, 74, 0.5);
}

/* Formas de pagamento simplificadas */
.payment-methods-simple {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.payment-option {
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(20px);
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    transition: all 0.3s ease;
}

.payment-option:hover {
    background: rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.5);
    color: #fff;
    transform: translateY(-5px);
}

/* Background do portal dimensional */
.dimensional-portal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.portal-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid;
    animation: portalRotate 20s linear infinite;
}

.ring-1 {
    width: 800px;
    height: 800px;
    border-color: rgba(138, 43, 226, 0.2);
    animation-duration: 25s;
}

.ring-2 {
    width: 1000px;
    height: 1000px;
    border-color: rgba(0, 255, 255, 0.15);
    animation-duration: 30s;
    animation-direction: reverse;
}

.ring-3 {
    width: 1200px;
    height: 1200px;
    border-color: rgba(255, 107, 107, 0.1);
    animation-duration: 35s;
}

.portal-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.portal-particles::before,
.portal-particles::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.8) 0%, rgba(0, 255, 255, 0.6) 50%, transparent 100%);
    border-radius: 50%;
    animation: portalParticleFloat 8s ease-in-out infinite;
}

.portal-particles::before {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.portal-particles::after {
    bottom: 30%;
    right: 20%;
    animation-delay: 4s;
}

.portal-energy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, rgba(0, 255, 255, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    animation: portalEnergyPulse 6s ease-in-out infinite;
}

@keyframes portalRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes portalParticleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(60px, -60px) scale(1.5);
        opacity: 1;
    }
}

@keyframes portalEnergyPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

/* Conteúdo da oferta */
.offer-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.offer-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.offer-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

/* Portal de energia central */
.energy-portal {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.portal-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, rgba(0, 255, 255, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
    border: 3px solid rgba(0, 255, 255, 0.3);
    animation: portalCorePulse 4s ease-in-out infinite;
    z-index: 5;
}

.portal-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 3;
}

.portal-ring-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid;
    animation: portalInnerRotate 15s linear infinite;
}

.ring-inner-1 {
    width: 400px;
    height: 400px;
    border-color: rgba(138, 43, 226, 0.4);
    animation-duration: 20s;
}

.ring-inner-2 {
    width: 450px;
    height: 450px;
    border-color: rgba(0, 255, 255, 0.3);
    animation-duration: 25s;
    animation-direction: reverse;
}

.ring-inner-3 {
    width: 500px;
    height: 500px;
    border-color: rgba(255, 107, 107, 0.2);
    animation-duration: 30s;
}

.portal-energy-flow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: conic-gradient(from 0deg, transparent, rgba(0, 255, 255, 0.2), transparent, rgba(138, 43, 226, 0.2), transparent);
    border-radius: 50%;
    animation: energyFlow 8s linear infinite;
    z-index: 2;
}

.portal-particles-orbital {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.portal-particles-orbital::before,
.portal-particles-orbital::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.8) 0%, rgba(0, 255, 255, 0.6) 50%, transparent 100%);
    border-radius: 50%;
    animation: orbitalParticle 12s linear infinite;
}

.portal-particles-orbital::before {
    top: 50%;
    left: 50%;
    animation-delay: 0s;
}

.portal-particles-orbital::after {
    top: 50%;
    left: 50%;
    animation-delay: 6s;
}

@keyframes portalCorePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1;
    }
}

@keyframes portalInnerRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes energyFlow {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbitalParticle {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(250px) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(250px) rotate(-360deg); }
}

/* Display de preço */
.price-display {
    text-align: center;
    z-index: 6;
}

.original-price {
    margin-bottom: 20px;
}

.price-label {
    display: block;
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.price-value {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    text-decoration-color: #ff6b6b;
    text-decoration-thickness: 3px;
}

.special-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.installment-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.installment-text {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.installment-value {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.or-text {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cash-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cash-text {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #22c55e, #16a34a, #15803d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 25px rgba(34, 197, 94, 0.8);
    animation: priceGlow 2s ease-in-out infinite;
}

.cash-label {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}


@keyframes goldGlow {
    0%, 100% {
        text-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
    }
    50% {
        text-shadow: 0 0 35px rgba(255, 215, 0, 1);
    }
}

/* Timer countdown com constelação */
.countdown-container {
    position: relative;
    margin: 40px 0;
}

.constellation-timer {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.constellation-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    animation: constellationRotate 30s linear infinite;
}

.star {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.8) 0%, rgba(0, 255, 255, 0.6) 50%, transparent 100%);
    border-radius: 50%;
    animation: starTwinkle 2s ease-in-out infinite;
}

.star-1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.star-2 { top: 25%; right: 0; transform: translateY(-50%); animation-delay: 0.5s; }
.star-3 { bottom: 25%; right: 0; transform: translateY(50%); animation-delay: 1s; }
.star-4 { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 1.5s; }
.star-5 { bottom: 25%; left: 0; transform: translateY(50%); animation-delay: 2s; }
.star-6 { top: 25%; left: 0; transform: translateY(-50%); animation-delay: 2.5s; }
.star-7 { top: 12.5%; right: 12.5%; animation-delay: 3s; }
.star-8 { bottom: 12.5%; left: 12.5%; animation-delay: 3.5s; }

.timer-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.timer-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b6b;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 107, 107, 0.6);
}

.timer-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    backdrop-filter: blur(10px);
    min-width: 80px;
}

.timer-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    line-height: 1;
}

.timer-label {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.timer-separator {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

@keyframes constellationRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Botão CTA gigante */
.cta-container {
    position: relative;
    margin: 40px 0;
}

.mega-cta-button {
    position: relative;
    background: linear-gradient(135deg, #8a2be2 0%, #00ffff 50%, #ff6b6b 100%);
    border: none;
    border-radius: 50px;
    padding: 25px 60px;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 30px rgba(138, 43, 226, 0.5),
        0 0 60px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: ctaPulse 3s ease-in-out infinite;
}

.mega-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 0 40px rgba(138, 43, 226, 0.7),
        0 0 80px rgba(0, 255, 255, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.cta-text {
    position: relative;
    z-index: 3;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.cta-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50px;
    animation: ctaGlow 2s ease-in-out infinite;
    z-index: 1;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.cta-energy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50px;
    animation: ctaEnergy 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 30px rgba(138, 43, 226, 0.5),
            0 0 60px rgba(0, 255, 255, 0.3),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 
            0 0 40px rgba(138, 43, 226, 0.7),
            0 0 80px rgba(0, 255, 255, 0.5),
            inset 0 0 30px rgba(255, 255, 255, 0.2);
    }
}

@keyframes ctaGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-100%);
    }
    50% {
        opacity: 0.8;
        transform: translateX(100%);
    }
}

@keyframes ctaEnergy {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

/* Ícones de formas de pagamento */
.payment-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.payment-icon {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.6);
}

.payment-symbol {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.6));
}

.payment-label {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsividade para oferta */
@media (max-width: 768px) {
    .energy-portal {
        width: 400px;
        height: 400px;
    }
    
    .portal-core {
        width: 280px;
        height: 280px;
    }
    
    .ring-inner-1 {
        width: 320px;
        height: 320px;
    }
    
    .ring-inner-2 {
        width: 360px;
        height: 360px;
    }
    
    .ring-inner-3 {
        width: 400px;
        height: 400px;
    }
    
    .installment-value {
        font-size: 2rem;
    }
    
    .cash-text {
        font-size: 2.5rem;
    }
    
    .constellation-timer {
        width: 300px;
        height: 300px;
    }
    
    .constellation-ring {
        width: 225px;
        height: 225px;
    }
    
    .timer-number {
        font-size: 2rem;
    }
    
    .mega-cta-button {
        padding: 20px 40px;
        font-size: 1.2rem;
    }
    
    .payment-methods {
        gap: 20px;
    }
    
    .payment-icon {
        padding: 15px;
    }
    
    .payment-symbol {
        font-size: 1.5rem;
    }
    
    .offer-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .energy-portal {
        width: 300px;
        height: 300px;
    }
    
    .portal-core {
        width: 210px;
        height: 210px;
    }
    
    .ring-inner-1 {
        width: 240px;
        height: 240px;
    }
    
    .ring-inner-2 {
        width: 270px;
        height: 270px;
    }
    
    .ring-inner-3 {
        width: 300px;
        height: 300px;
    }
    
    .installment-value {
        font-size: 1.8rem;
    }
    
    .cash-text {
        font-size: 2rem;
    }
    
    .constellation-timer {
        width: 250px;
        height: 250px;
    }
    
    .constellation-ring {
        width: 187.5px;
        height: 187.5px;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
    
    .timer-unit {
        padding: 10px 15px;
        min-width: 60px;
    }
    
    .mega-cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .payment-methods {
        gap: 15px;
    }
    
    .payment-icon {
        padding: 12px;
    }
    
    .payment-symbol {
        font-size: 1.2rem;
    }
    
    .offer-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .offer-section {
        padding: 60px 15px;
    }
    
    .pricing-card {
        padding: 30px 20px;
        margin-bottom: 25px;
    }
    
    .installment-value, .cash-text {
        font-size: 2rem;
    }
    
    .timer-display {
        gap: 10px;
    }
    
    .timer-unit {
        padding: 12px 15px;
        min-width: 70px;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
    
    .payment-methods-simple {
        gap: 15px;
    }
    
    .payment-option {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* SEÇÃO FAQ */
.faq-section {
    position: relative;
    min-height: auto;
    background: linear-gradient(135deg, #000000 0%, #0a0a1a 30%, #1a0033 70%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow: hidden;
}

/* Background com energia sutil */
.faq-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.faq-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.faq-particles::before,
.faq-particles::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.6) 0%, transparent 100%);
    border-radius: 50%;
    animation: faqParticleFloat 10s ease-in-out infinite;
}

.faq-particles::before {
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.faq-particles::after {
    bottom: 40%;
    right: 25%;
    animation-delay: 5s;
}

.faq-energy-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    border: 1px solid rgba(138, 43, 226, 0.1);
    animation: faqWave 20s ease-in-out infinite;
}

@keyframes faqParticleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(40px, -40px) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes faqWave {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.3;
    }
}

/* Conteúdo da FAQ */
.faq-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    width: 100%;
    text-align: center;
}

/* Ícone holográfico rotacionando */
.holographic-question-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
}

.icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid;
    animation: iconRingRotate 15s linear infinite;
}

.ring-1 {
    width: 80px;
    height: 80px;
    border-color: rgba(138, 43, 226, 0.4);
    animation-duration: 20s;
}

.ring-2 {
    width: 100px;
    height: 100px;
    border-color: rgba(0, 255, 255, 0.3);
    animation-duration: 25s;
    animation-direction: reverse;
}

.ring-3 {
    width: 120px;
    height: 120px;
    border-color: rgba(255, 107, 107, 0.2);
    animation-duration: 30s;
}

.question-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    z-index: 4;
    animation: symbolPulse 3s ease-in-out infinite;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconGlow 4s ease-in-out infinite;
    z-index: 2;
}

.icon-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.icon-particles::before,
.icon-particles::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.8) 0%, transparent 100%);
    border-radius: 50%;
    animation: iconParticleOrbit 8s linear infinite;
}

.icon-particles::before {
    top: 50%;
    left: 50%;
    animation-delay: 0s;
}

.icon-particles::after {
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes iconRingRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes symbolPulse {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        text-shadow: 0 0 30px rgba(0, 255, 255, 1);
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes iconGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes iconParticleOrbit {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(60px) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(60px) rotate(-360deg); }
}

/* Título da FAQ */
.faq-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

/* Container dos acordeões */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Acordeões */
.faq-item {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.faq-question {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-align: left;
    margin: 0;
    padding: 20px 25px 10px 25px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.faq-answer {
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    text-align: left;
}


/* Responsividade para FAQ */
@media (max-width: 768px) {
    .holographic-question-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 30px;
    }
    
    .ring-1 {
        width: 70px;
        height: 70px;
    }
    
    .ring-2 {
        width: 85px;
        height: 85px;
    }
    
    .ring-3 {
        width: 100px;
        height: 100px;
    }
    
    .question-symbol {
        font-size: 2.5rem;
    }
    
    .icon-glow {
        width: 70px;
        height: 70px;
    }
    
    .faq-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .faq-question {
        font-size: 1.1rem;
        padding: 15px 20px 8px 20px;
    }
    
    .faq-answer {
        padding: 0 20px 15px 20px;
    }
    
    .accordion-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .holographic-question-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }
    
    .ring-1 {
        width: 60px;
        height: 60px;
    }
    
    .ring-2 {
        width: 70px;
        height: 70px;
    }
    
    .ring-3 {
        width: 80px;
        height: 80px;
    }
    
    .question-symbol {
        font-size: 2rem;
    }
    
    .icon-glow {
        width: 60px;
        height: 60px;
    }
    
    .faq-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 12px 15px 6px 15px;
    }
    
    .faq-answer {
        padding: 0 15px 12px 15px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    .faq-section {
        padding: 60px 15px;
    }
}

/* SEÇÃO ESCASSEZ/URGÊNCIA */
.scarcity-section {
    position: relative;
    min-height: 50vh;
    background: linear-gradient(135deg, #000000 0%, #2d0000 30%, #1a0033 70%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    overflow: hidden;
}

/* Background com energia de urgência */
.urgency-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.urgency-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.urgency-particles::before,
.urgency-particles::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.8) 0%, rgba(138, 43, 226, 0.6) 50%, transparent 100%);
    border-radius: 50%;
    animation: urgencyParticleFloat 8s ease-in-out infinite;
}

.urgency-particles::before {
    top: 20%;
    left: 25%;
    animation-delay: 0s;
}

.urgency-particles::after {
    bottom: 30%;
    right: 20%;
    animation-delay: 4s;
}

.urgency-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    border: 2px solid rgba(255, 0, 0, 0.1);
    animation: urgencyWave 15s ease-in-out infinite;
}

.urgency-energy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.05) 0%, rgba(138, 43, 226, 0.03) 50%, transparent 70%);
    border-radius: 50%;
    animation: urgencyEnergyPulse 6s ease-in-out infinite;
}

@keyframes urgencyParticleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(60px, -60px) scale(1.5);
        opacity: 1;
    }
}

@keyframes urgencyWave {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
}

@keyframes urgencyEnergyPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
}

/* Conteúdo da escassez */
.scarcity-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    width: 100%;
    text-align: center;
}

/* Ícone de aviso triangular holográfico */
.holographic-warning-icon {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 40px;
}

.warning-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 3px solid;
    animation: warningRingRotate 12s linear infinite;
}

.ring-1 {
    width: 100px;
    height: 100px;
    border-color: rgba(255, 0, 0, 0.6);
    animation-duration: 15s;
}

.ring-2 {
    width: 120px;
    height: 120px;
    border-color: rgba(255, 107, 107, 0.4);
    animation-duration: 18s;
    animation-direction: reverse;
}

.ring-3 {
    width: 140px;
    height: 140px;
    border-color: rgba(138, 43, 226, 0.3);
    animation-duration: 21s;
}

.warning-triangle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.3) 0%, rgba(255, 107, 107, 0.2) 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: trianglePulse 2s ease-in-out infinite;
    z-index: 4;
}

.triangle-symbol {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #ff0000;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
    margin-top: 10px;
    animation: symbolBlink 1.5s ease-in-out infinite;
}

.warning-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: warningGlow 3s ease-in-out infinite;
    z-index: 2;
}

.warning-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.warning-particles::before,
.warning-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.8) 0%, rgba(255, 107, 107, 0.6) 50%, transparent 100%);
    border-radius: 50%;
    animation: warningParticleOrbit 10s linear infinite;
}

.warning-particles::before {
    top: 50%;
    left: 50%;
    animation-delay: 0s;
}

.warning-particles::after {
    top: 50%;
    left: 50%;
    animation-delay: 5s;
}

@keyframes warningRingRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes trianglePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

@keyframes symbolBlink {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
    }
    50% {
        opacity: 0.7;
        text-shadow: 0 0 30px rgba(255, 0, 0, 1);
    }
}

@keyframes warningGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.6;
    }
}

@keyframes warningParticleOrbit {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(70px) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(70px) rotate(-360deg); }
}

/* Título da escassez */
.scarcity-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #ff0000;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 0, 0, 0.9);
    }
}

/* Alerta luminoso principal */
.scarcity-alert {
    position: relative;
    margin: 0 auto;
}

.luminous-alert {
    position: relative;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.alert-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid;
    border-image: linear-gradient(45deg, #ff0000, #ff6b6b, #8a2be2, #ff0000) 1;
    border-radius: 20px;
    animation: borderPulse 2s ease-in-out infinite;
}

.alert-content {
    position: relative;
    z-index: 2;
}

.alert-text {
    margin-bottom: 30px;
}

.alert-text p {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 15px;
}

.alert-text strong {
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.filled-text {
    font-weight: 700;
    color: #ff6b6b !important;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

/* Barra de progresso neon */
.progress-container {
    margin: 30px 0;
}

.progress-bar {
    position: relative;
    width: 100%;
    height: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.progress-fill {
    position: relative;
    width: 73%;
    height: 100%;
    background: linear-gradient(90deg, #ff0000 0%, #ff6b6b 50%, #8a2be2 100%);
    border-radius: 12px;
    animation: progressGlow 2s ease-in-out infinite;
    overflow: hidden;
}

.progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShimmer 3s ease-in-out infinite;
}

.progress-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.progress-particles::before,
.progress-particles::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: progressParticle 2s ease-in-out infinite;
}

.progress-particles::before {
    top: 50%;
    left: 20%;
    animation-delay: 0s;
}

.progress-particles::after {
    top: 50%;
    left: 60%;
    animation-delay: 1s;
}

.progress-percentage {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes borderPulse {
    0%, 100% {
        border-image-source: linear-gradient(45deg, #ff0000, #ff6b6b, #8a2be2, #ff0000);
        opacity: 0.8;
    }
    50% {
        border-image-source: linear-gradient(45deg, #ff6b6b, #ff0000, #ff6b6b, #8a2be2);
        opacity: 1;
    }
}

@keyframes progressGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
    }
}

@keyframes progressShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes progressParticle {
    0%, 100% {
        opacity: 0;
        transform: translateY(-50%) scale(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

/* Contador de vagas restantes */
.vacancy-counter {
    position: relative;
    text-align: center;
    margin-top: 30px;
}

.counter-label {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.counter-number {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: #ff0000;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
    animation: counterBlink 1s ease-in-out infinite;
    position: relative;
    z-index: 3;
}

.counter-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: counterGlow 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes counterBlink {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        text-shadow: 0 0 40px rgba(255, 0, 0, 1);
        transform: scale(1.05);
    }
}

@keyframes counterGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

/* Efeitos de urgência */
.urgency-effects {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    pointer-events: none;
    z-index: 1;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(255, 0, 0, 0.3);
    animation: pulseRing 3s ease-in-out infinite;
}

.pulse-ring.ring-1 {
    width: 400px;
    height: 400px;
    animation-delay: 0s;
}

.pulse-ring.ring-2 {
    width: 500px;
    height: 500px;
    animation-delay: 1s;
}

.pulse-ring.ring-3 {
    width: 600px;
    height: 600px;
    animation-delay: 2s;
}

@keyframes pulseRing {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.1;
    }
}

/* Responsividade para escassez */
@media (max-width: 768px) {
    .holographic-warning-icon {
        width: 120px;
        height: 120px;
        margin-bottom: 30px;
    }
    
    .ring-1 {
        width: 85px;
        height: 85px;
    }
    
    .ring-2 {
        width: 100px;
        height: 100px;
    }
    
    .ring-3 {
        width: 120px;
        height: 120px;
    }
    
    .warning-triangle {
        width: 50px;
        height: 50px;
    }
    
    .triangle-symbol {
        font-size: 1.5rem;
        margin-top: 8px;
    }
    
    .warning-glow {
        width: 70px;
        height: 70px;
    }
    
    .scarcity-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .luminous-alert {
        padding: 30px 25px;
    }
    
    .alert-text p {
        font-size: 1rem;
    }
    
    .progress-bar {
        height: 18px;
    }
    
    .counter-number {
        font-size: 3rem;
    }
    
    .counter-glow {
        width: 150px;
        height: 150px;
    }
    
    .urgency-effects {
        width: 400px;
        height: 400px;
    }
    
    .pulse-ring.ring-1 {
        width: 300px;
        height: 300px;
    }
    
    .pulse-ring.ring-2 {
        width: 350px;
        height: 350px;
    }
    
    .pulse-ring.ring-3 {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .holographic-warning-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 25px;
    }
    
    .ring-1 {
        width: 70px;
        height: 70px;
    }
    
    .ring-2 {
        width: 85px;
        height: 85px;
    }
    
    .ring-3 {
        width: 100px;
        height: 100px;
    }
    
    .warning-triangle {
        width: 40px;
        height: 40px;
    }
    
    .triangle-symbol {
        font-size: 1.2rem;
        margin-top: 6px;
    }
    
    .warning-glow {
        width: 60px;
        height: 60px;
    }
    
    .scarcity-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .luminous-alert {
        padding: 25px 20px;
    }
    
    .alert-text p {
        font-size: 0.95rem;
    }
    
    .progress-bar {
        height: 16px;
    }
    
    .progress-percentage {
        font-size: 0.8rem;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .counter-glow {
        width: 120px;
        height: 120px;
    }
    
    .urgency-effects {
        width: 300px;
        height: 300px;
    }
    
    .pulse-ring.ring-1 {
        width: 250px;
        height: 250px;
    }
    
    .pulse-ring.ring-2 {
        width: 275px;
        height: 275px;
    }
    
    .pulse-ring.ring-3 {
        width: 300px;
        height: 300px;
    }
    
    .scarcity-section {
        padding: 60px 15px;
    }
}

/* SEÇÃO CTA FINAL */
.final-cta-section {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, #000000 0%, #1a0033 30%, #000033 70%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow: hidden;
}

/* Background com explosão de luz */
.light-explosion-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.explosion-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(0, 255, 255, 0.6) 50%, rgba(138, 43, 226, 0.4) 100%);
    border-radius: 50%;
    animation: explosionCenter 4s ease-in-out infinite;
    z-index: 3;
}

.explosion-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: conic-gradient(from 0deg, 
        transparent 0deg, 
        rgba(255, 255, 255, 0.3) 30deg, 
        transparent 60deg,
        rgba(0, 255, 255, 0.3) 90deg,
        transparent 120deg,
        rgba(138, 43, 226, 0.3) 150deg,
        transparent 180deg,
        rgba(255, 255, 255, 0.3) 210deg,
        transparent 240deg,
        rgba(0, 255, 255, 0.3) 270deg,
        transparent 300deg,
        rgba(138, 43, 226, 0.3) 330deg,
        transparent 360deg
    );
    border-radius: 50%;
    animation: explosionRays 8s linear infinite;
    z-index: 2;
}

.explosion-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.explosion-particles::before,
.explosion-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(0, 255, 255, 0.6) 50%, transparent 100%);
    border-radius: 50%;
    animation: explosionParticleFloat 6s ease-in-out infinite;
}

.explosion-particles::before {
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.explosion-particles::after {
    bottom: 30%;
    right: 20%;
    animation-delay: 3s;
}

.light-burst {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(0, 255, 255, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    animation: lightBurst 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes explosionCenter {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 1;
    }
}

@keyframes explosionRays {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes explosionParticleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(80px, -80px) scale(1.5);
        opacity: 1;
    }
}

@keyframes lightBurst {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.5;
    }
}

/* Fogos de artifício digitais */
.digital-fireworks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.firework {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.8) 0%, rgba(255, 107, 107, 0.6) 50%, transparent 100%);
    border-radius: 50%;
    animation: fireworkExplosion 8s ease-in-out infinite;
}

.firework-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.firework-2 {
    top: 30%;
    right: 20%;
    animation-delay: 1.5s;
}

.firework-3 {
    bottom: 25%;
    left: 25%;
    animation-delay: 3s;
}

.firework-4 {
    bottom: 35%;
    right: 15%;
    animation-delay: 4.5s;
}

.firework-5 {
    top: 50%;
    left: 10%;
    animation-delay: 6s;
}

.firework-6 {
    top: 60%;
    right: 10%;
    animation-delay: 7.5s;
}

@keyframes fireworkExplosion {
    0%, 100% {
        transform: scale(0);
        opacity: 0;
    }
    10% {
        transform: scale(1);
        opacity: 1;
    }
    20% {
        transform: scale(2);
        opacity: 0.8;
    }
    30% {
        transform: scale(1.5);
        opacity: 0.6;
    }
    50% {
        transform: scale(1);
        opacity: 0.4;
    }
    70% {
        transform: scale(0.5);
        opacity: 0.2;
    }
}

/* Conteúdo da CTA final */
.final-cta-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

/* Título impactante */
.impact-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2;
}

.title-word {
    display: inline-block;
    margin: 0 10px;
    animation: titleWordGlow 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

.word-1 {
    color: #00ffff;
    animation-delay: 0s;
}

.word-2 {
    color: #ffd700;
    animation-delay: 0.5s;
}

.word-3 {
    color: #ff6b6b;
    animation-delay: 1s;
}

.word-4 {
    color: #8a2be2;
    animation-delay: 1.5s;
}

@keyframes titleWordGlow {
    0%, 100% {
        text-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 50px rgba(0, 255, 255, 1);
        transform: scale(1.05);
    }
}

/* Texto motivacional */
.motivational-text {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.motivation-line-1,
.motivation-line-2 {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.motivational-text strong {
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    font-weight: 700;
}

/* Botão CTA final */
.final-cta-container {
    position: relative;
    margin: 60px 0;
}

.final-cta-button {
    position: relative;
    background: linear-gradient(135deg, #8a2be2 0%, #00ffff 50%, #ffd700 100%);
    border: none;
    border-radius: 60px;
    padding: 30px 120px;
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 50px rgba(138, 43, 226, 0.6),
        0 0 100px rgba(0, 255, 255, 0.4),
        0 0 150px rgba(255, 215, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    animation: finalCtaPulse 4s ease-in-out infinite;
    transform-style: preserve-3d;
}

.final-cta-button:hover {
    transform: translateY(-10px) scale(1.05) rotateX(5deg);
    box-shadow: 
        0 0 60px rgba(138, 43, 226, 0.8),
        0 0 120px rgba(0, 255, 255, 0.6),
        0 0 180px rgba(255, 215, 0, 0.5),
        inset 0 0 40px rgba(255, 255, 255, 0.2);
}

.cta-portal {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    z-index: 3;
}

.portal-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid;
    animation: portalRingRotate 6s linear infinite;
}

.cta-portal .ring-1 {
    width: 60px;
    height: 60px;
    border-color: rgba(255, 255, 255, 0.6);
    animation-duration: 8s;
}

.cta-portal .ring-2 {
    width: 70px;
    height: 70px;
    border-color: rgba(0, 255, 255, 0.4);
    animation-duration: 10s;
    animation-direction: reverse;
}

.cta-portal .ring-3 {
    width: 80px;
    height: 80px;
    border-color: rgba(138, 43, 226, 0.3);
    animation-duration: 12s;
}

.portal-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(0, 255, 255, 0.6) 50%, transparent 100%);
    border-radius: 50%;
    animation: portalCorePulse 2s ease-in-out infinite;
    z-index: 2;
}

.portal-energy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: conic-gradient(from 0deg, transparent, rgba(0, 255, 255, 0.3), transparent, rgba(138, 43, 226, 0.3), transparent);
    border-radius: 50%;
    animation: portalEnergyFlow 4s linear infinite;
    z-index: 1;
}

.cta-text {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.cta-line-1,
.cta-line-2 {
    display: block;
    line-height: 1.2;
    animation: ctaTextGlow 3s ease-in-out infinite;
}

.cta-line-1 {
    animation-delay: 0s;
}

.cta-line-2 {
    animation-delay: 1.5s;
}

.cta-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 60px;
    animation: ctaGlow 3s ease-in-out infinite;
    z-index: 1;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.cta-3d-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
    border-radius: 60px;
    z-index: 1;
}

@keyframes finalCtaPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 50px rgba(138, 43, 226, 0.6),
            0 0 100px rgba(0, 255, 255, 0.4),
            0 0 150px rgba(255, 215, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 255, 0.1);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 
            0 0 60px rgba(138, 43, 226, 0.8),
            0 0 120px rgba(0, 255, 255, 0.6),
            0 0 180px rgba(255, 215, 0, 0.5),
            inset 0 0 40px rgba(255, 255, 255, 0.2);
    }
}

@keyframes portalRingRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes portalCorePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

@keyframes portalEnergyFlow {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ctaTextGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
    }
}

@keyframes ctaGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-100%);
    }
    50% {
        opacity: 0.8;
        transform: translateX(100%);
    }
}

/* Efeitos de energia */
.energy-effects {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    pointer-events: none;
    z-index: 1;
}

.energy-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 3px solid rgba(0, 255, 255, 0.2);
    animation: energyWave 6s ease-in-out infinite;
}

.energy-wave.wave-1 {
    width: 400px;
    height: 400px;
    animation-delay: 0s;
}

.energy-wave.wave-2 {
    width: 600px;
    height: 600px;
    animation-delay: 2s;
}

.energy-wave.wave-3 {
    width: 800px;
    height: 800px;
    animation-delay: 4s;
}

@keyframes energyWave {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.1;
    }
}

/* Responsividade para CTA final */
@media (max-width: 768px) {
    .impact-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
        letter-spacing: 2px;
    }
    
    .title-word {
        margin: 0 5px;
    }
    
    .motivational-text {
        margin-bottom: 40px;
    }
    
    .motivation-line-1,
    .motivation-line-2 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .final-cta-button {
        padding: 25px 70px;
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .cta-portal {
        width: 60px;
        height: 60px;
        left: 15px;
    }
    
    .cta-portal .ring-1 {
        width: 45px;
        height: 45px;
    }
    
    .cta-portal .ring-2 {
        width: 52px;
        height: 52px;
    }
    
    .cta-portal .ring-3 {
        width: 60px;
        height: 60px;
    }
    
    .portal-core {
        width: 30px;
        height: 30px;
    }
    
    .portal-energy {
        width: 45px;
        height: 45px;
    }
    
    .energy-effects {
        width: 600px;
        height: 600px;
    }
    
    .energy-wave.wave-1 {
        width: 300px;
        height: 300px;
    }
    
    .energy-wave.wave-2 {
        width: 450px;
        height: 450px;
    }
    
    .energy-wave.wave-3 {
        width: 600px;
        height: 600px;
    }
}

@media (max-width: 480px) {
    .impact-title {
        font-size: 2rem;
        margin-bottom: 25px;
        letter-spacing: 1px;
    }
    
    .title-word {
        margin: 0 3px;
    }
    
    .motivational-text {
        margin-bottom: 35px;
    }
    
    .motivation-line-1,
    .motivation-line-2 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .final-cta-button {
        padding: 20px 60px;
        font-size: 0.95rem;
        letter-spacing: 1px;
    }
    
    .cta-portal {
        width: 50px;
        height: 50px;
        left: 10px;
    }
    
    .cta-portal .ring-1 {
        width: 35px;
        height: 35px;
    }
    
    .cta-portal .ring-2 {
        width: 42px;
        height: 42px;
    }
    
    .cta-portal .ring-3 {
        width: 50px;
        height: 50px;
    }
    
    .portal-core {
        width: 25px;
        height: 25px;
    }
    
    .portal-energy {
        width: 35px;
        height: 35px;
    }
    
    .energy-effects {
        width: 400px;
        height: 400px;
    }
    
    .energy-wave.wave-1 {
        width: 250px;
        height: 250px;
    }
    
    .energy-wave.wave-2 {
        width: 300px;
        height: 300px;
    }
    
    .energy-wave.wave-3 {
        width: 400px;
        height: 400px;
    }
    
    .final-cta-section {
        padding: 60px 15px;
    }
}

/* MELHORIAS PARA SEÇÃO DE MÓDULOS */
/* Estilos para header dos módulos */
.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
}

.module-number {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.module-duration {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(138, 43, 226, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid rgba(138, 43, 226, 0.4);
}

/* Estilos melhorados para detalhes dos módulos */
.module-details ul li {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    padding-left: 5px;
    position: relative;
    transition: all 0.3s ease;
}

.module-details ul li:hover {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    transform: translateX(5px);
}

/* Estilos para bônus dos módulos */
.module-bonus {
    margin-top: 15px;
    padding: 10px 15px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    text-align: center;
    animation: bonusGlow 3s ease-in-out infinite;
}

.bonus-tag {
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 8px;
}

.bonus-text {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes bonusGlow {
    0%, 100% {
        border-color: rgba(255, 215, 0, 0.3);
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
    }
    50% {
        border-color: rgba(255, 215, 0, 0.6);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
}

/* Estilos para resumo da jornada */
.journey-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(138, 43, 226, 0.3);
}

.summary-card {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.summary-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.summary-card:hover::before {
    left: 100%;
}

.summary-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    animation: summaryIconPulse 2s ease-in-out infinite;
}

.summary-title {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.summary-value {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    animation: summaryValueGlow 3s ease-in-out infinite;
}

.summary-desc {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes summaryIconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes summaryValueGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.9);
    }
}

/* Responsividade melhorada para módulos */
@media (max-width: 768px) {
    .module-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .module-number {
        font-size: 0.7rem;
    }
    
    .module-duration {
        font-size: 0.7rem;
        align-self: flex-end;
    }
    
    .bonus-text {
        font-size: 0.75rem;
    }
    
    .journey-summary {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        padding: 25px 15px;
        margin-top: 30px;
    }
    
    .summary-card {
        padding: 15px 10px;
    }
    
    .summary-icon {
        font-size: 2rem;
    }
    
    .summary-value {
        font-size: 1.5rem;
    }
    
    .summary-title {
        font-size: 0.8rem;
    }
    
    .summary-desc {
        font-size: 0.8rem;
    }
}

/* TRANSIÇÕES ENTRE SEÇÕES */
/* Transição Hero -> Problema */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(13, 27, 42, 0.3) 30%, 
        rgba(26, 35, 126, 0.5) 70%, 
        rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
    z-index: 10;
}

/* Transição Problema -> Solução */
.problem-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(26, 26, 46, 0.3) 30%, 
        rgba(22, 33, 62, 0.5) 70%, 
        rgba(15, 52, 96, 0.8) 100%);
    pointer-events: none;
    z-index: 10;
}

/* Transição Solução -> Autoridade */
.solution-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(15, 15, 35, 0.3) 30%, 
        rgba(26, 26, 46, 0.5) 70%, 
        rgba(22, 33, 62, 0.8) 100%);
    pointer-events: none;
    z-index: 10;
}

/* Transição Autoridade -> Módulos */
.authority-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(10, 10, 10, 0.3) 30%, 
        rgba(26, 26, 46, 0.5) 70%, 
        rgba(22, 33, 62, 0.8) 100%);
    pointer-events: none;
    z-index: 10;
}

/* Transição Módulos -> Bônus */
.modules-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(10, 10, 10, 0.3) 30%, 
        rgba(26, 26, 46, 0.5) 70%, 
        rgba(22, 33, 62, 0.8) 100%);
    pointer-events: none;
    z-index: 10;
}

/* Transição Bônus -> Depoimentos */
.bonus-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 0, 0, 0.3) 30%, 
        rgba(26, 0, 51, 0.5) 70%, 
        rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
    z-index: 10;
}

/* Transição Depoimentos -> Garantia */
.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 0, 0, 0.3) 30%, 
        rgba(26, 0, 51, 0.5) 70%, 
        rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
    z-index: 10;
}

/* Transição Garantia -> Oferta */
.guarantee-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 0, 0, 0.3) 30%, 
        rgba(26, 0, 51, 0.5) 70%, 
        rgba(0, 0, 51, 0.8) 100%);
    pointer-events: none;
    z-index: 10;
}

/* Transição Oferta -> FAQ */
.offer-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 0, 0, 0.3) 30%, 
        rgba(10, 10, 26, 0.5) 70%, 
        rgba(26, 0, 51, 0.8) 100%);
    pointer-events: none;
    z-index: 10;
}

/* Transição FAQ -> Escassez */
.faq-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 0, 0, 0.3) 30%, 
        rgba(45, 0, 0, 0.5) 70%, 
        rgba(26, 0, 51, 0.8) 100%);
    pointer-events: none;
    z-index: 10;
}

/* Transição Escassez -> CTA Final */
.scarcity-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 0, 0, 0.3) 30%, 
        rgba(26, 0, 51, 0.5) 70%, 
        rgba(0, 0, 51, 0.8) 100%);
    pointer-events: none;
    z-index: 10;
}

/* Bordas de transição com efeitos luminosos */
.hero-section::before,
.problem-section::before,
.solution-section::before,
.authority-section::before,
.modules-section::before,
.bonus-section::before,
.testimonials-section::before,
.guarantee-section::before,
.offer-section::before,
.faq-section::before,
.scarcity-section::before,
.final-cta-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 255, 255, 0.3) 25%, 
        rgba(138, 43, 226, 0.5) 50%, 
        rgba(0, 255, 255, 0.3) 75%, 
        transparent 100%);
    pointer-events: none;
    z-index: 11;
    animation: borderGlow 4s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.8;
        transform: scaleX(1.02);
    }
}

/* Efeitos de partículas nas transições */
.hero-section::after,
.problem-section::after,
.solution-section::after,
.authority-section::after,
.modules-section::after,
.bonus-section::after,
.testimonials-section::after,
.guarantee-section::after,
.offer-section::after,
.faq-section::after,
.scarcity-section::after {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 50%, rgba(138, 43, 226, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px;
    animation: transitionParticles 8s linear infinite;
}

@keyframes transitionParticles {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 50px 50px, 30px 30px;
    }
}

/* Responsividade para transições */
@media (max-width: 768px) {
    .hero-section::after,
    .problem-section::after,
    .solution-section::after,
    .authority-section::after,
    .modules-section::after,
    .bonus-section::after,
    .testimonials-section::after,
    .guarantee-section::after,
    .offer-section::after,
    .faq-section::after,
    .scarcity-section::after {
        height: 60px;
    }
    
    .hero-section::before,
    .problem-section::before,
    .solution-section::before,
    .authority-section::before,
    .modules-section::before,
    .bonus-section::before,
    .testimonials-section::before,
    .guarantee-section::before,
    .offer-section::before,
    .faq-section::before,
    .scarcity-section::before,
    .final-cta-section::before {
        height: 2px;
    }
}
