:root {
    --bg-base: #03050b;
    --text-main: #f0f0f5;
    --text-muted: #8b92a5;
    
    --neon-blue: #00f0ff;
    --neon-purple: #8a2be2;
    --neon-orange: #ff5500;
    --neon-green: #39ff14;
    --neon-red: #ff003c;
    
    --glass-bg: rgba(15, 20, 35, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    --font-heading: 'Space Grotesk', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-base);
}

body {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}

/* Background Effects */
.glow-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 10%, rgba(0, 240, 255, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.05) 0%, transparent 40%);
    z-index: 0;
    pointer-events: none;
}

.grid-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
    pointer-events: none;
}

/* Utilities */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.w-full { width: 100%; display: block; }
.text-gray { color: var(--text-muted); }
.text-lg { font-size: 1.15rem; }
.text-xl { font-size: 1.35rem; }
.text-blue { color: var(--neon-blue); }
.text-green { color: var(--neon-green); }
.text-red { color: var(--neon-red); }
.font-bold { font-weight: 700; }
.mx-auto { margin-left: auto; margin-right: auto; }
.pb-4 { padding-bottom: 4rem; }

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.text-glow {
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

/* Hero */
.hero {
    padding-top: 4rem;
    padding-bottom: 4rem;
    text-align: center;
    border-top: none;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.headline {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.neon-text {
    color: #fff;
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px var(--neon-blue), 0 0 30px var(--neon-blue);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.alert-box {
    background: rgba(255, 85, 0, 0.1);
    border-left: 3px solid var(--neon-orange);
    padding: 1rem;
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #fca5a5;
    border-radius: 0 8px 8px 0;
}

.hero-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neon-green);
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.4);
}

/* Cyber Button */
.cyber-button {
    position: relative;
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 700;
    color: #03050b;
    background: var(--neon-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    font-size: 1.1rem;
    border: none;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
    z-index: 1;
}

.cyber-button::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    transition: all 0.5s ease;
    z-index: -1;
}

.cyber-button:hover {
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.7);
    transform: scale(1.02);
}

.cyber-button:hover::before {
    left: 150%;
}

/* Secondary Button (Ghost) */
.btn-ghost {
    position: relative;
    display: inline-block;
    padding: 0.8rem 2rem;
    font-weight: 600;
    color: var(--neon-blue);
    background: rgba(0, 240, 255, 0.05);
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.3);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    background: rgba(0, 240, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
}

.pulse-anim {
    animation: cyberPulse 2s infinite;
}

@keyframes cyberPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(0, 240, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}

.btn-ghost {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    color: var(--text-main);
    text-decoration: none;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
}

/* Section Titles */
.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

/* Dores */
.pain-cards {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

@keyframes cardPulseMobile {
    0% { box-shadow: 0 0 5px rgba(0, 240, 255, 0.1), inset 0 0 5px rgba(0, 240, 255, 0.05); }
    50% { box-shadow: 0 0 15px rgba(0, 240, 255, 0.4), inset 0 0 15px rgba(0, 240, 255, 0.15); border-color: #00ffff; }
    100% { box-shadow: 0 0 5px rgba(0, 240, 255, 0.1), inset 0 0 5px rgba(0, 240, 255, 0.05); }
}

.pain-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(10, 15, 25, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.5);
    padding: 1rem;
    border-radius: 12px;
    font-size: 1.05rem;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: cardPulseMobile 4s infinite ease-in-out;
}

/* Criar pulsos desencontrados para parecer mais vivo */
.pain-card:nth-child(1) { animation-delay: 0s; }
.pain-card:nth-child(2) { animation-delay: 0.8s; }
.pain-card:nth-child(3) { animation-delay: 1.6s; }
.pain-card:nth-child(4) { animation-delay: 2.4s; }
.pain-card:nth-child(5) { animation-delay: 3.2s; }

.pain-card:hover {
    transform: scale(1.02);
}

.icon-wrapper {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(0, 50, 100, 0.4));
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
    font-size: 1.3rem;
    transform: perspective(300px) rotateX(15deg) rotateY(-15deg);
    box-shadow: -2px 2px 0 rgba(0, 240, 255, 0.5), -5px 5px 10px rgba(0,0,0,0.8);
    border-top: 1px solid rgba(255,255,255,0.4);
    border-right: 1px solid rgba(255,255,255,0.2);
    filter: drop-shadow(2px 4px 4px rgba(0,0,0,0.6));
}

.icon-wrapper img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.impactful-phrase-container {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    margin-top: 2rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.03), transparent);
}

.impactful-phrase {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.5;
    color: rgba(255,255,255,0.7);
    animation: floatBreath 4s infinite ease-in-out;
}

.impactful-phrase span {
    display: block;
    font-size: 1.6rem;
    margin-top: 0.5rem;
    background: linear-gradient(90deg, var(--neon-blue) 0%, #fff 50%, var(--neon-blue) 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 3s infinite linear;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

@keyframes floatBreath {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.02); }
}

@keyframes textShine {
    to {
        background-position: 200% center;
    }
}

/* Quebra - Glitch & Terminal */
.glitch-wrapper {
    position: relative;
    display: inline-block;
}

.glitch-text {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    position: relative;
}

.terminal-text {
    background: #000;
    border: 1px solid #333;
    padding: 1.5rem;
    border-radius: 8px;
    font-family: monospace;
    text-align: left;
    color: #00ff00;
}

.cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.relative-section {
    position: relative;
    overflow: hidden;
}

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

.relative-z {
    position: relative;
    z-index: 1;
}

.solution-cards {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    padding-left: 10px;
}



@keyframes sCardPulse {
    0% { border-color: rgba(0, 240, 255, 0.1); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
    15% { border-color: var(--neon-blue); box-shadow: 0 0 25px rgba(0, 240, 255, 0.4); transform: scale(1.02); }
    30% { border-color: rgba(0, 240, 255, 0.1); box-shadow: 0 5px 15px rgba(0,0,0,0.3); transform: scale(1); }
    100% { border-color: rgba(0, 240, 255, 0.1); box-shadow: 0 5px 15px rgba(0,0,0,0.3); transform: scale(1); }
}

.s-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(10, 15, 30, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.1);
    padding: 1.2rem;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: sCardPulse 8s infinite ease-in-out;
}

.s-card:nth-child(1) { animation-delay: 0s; }
.s-card:nth-child(2) { animation-delay: 2s; }
.s-card:nth-child(3) { animation-delay: 4s; }

.s-card:hover {
    transform: scale(1.03);
}

.s-indicator {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.05);
    border: 2px solid var(--neon-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
    position: relative;
    flex-shrink: 0;
}

.s-indicator::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 8px #fff, 0 0 15px var(--neon-blue);
}

.s-card p {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
}

/* Badge Em apenas 7 dias */
.days-badge-container {
    margin-top: 2rem;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
}

.neon-number {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--neon-purple);
    padding: 0.5rem 1rem;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.8), 0 0 5px rgba(138, 43, 226, 0.6);
    animation: slowPulseText 2s infinite alternate;
}

@keyframes slowPulseText {
    from { opacity: 0.8; text-shadow: 0 0 10px rgba(138, 43, 226, 0.5); transform: scale(0.98); }
    to { opacity: 1; text-shadow: 0 0 20px rgba(138, 43, 226, 1), 0 0 10px rgba(138, 43, 226, 0.8); transform: scale(1.02); }
}


.neon-box {
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    background: rgba(255,255,255,0.02);
}

/* Protocol */
.protocol-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.p-step {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.p-step::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 3px; height: 100%;
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

.two-cols {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    gap: 1rem;
}

@media (max-width: 600px) {
    .two-cols {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Beneficios */
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.b-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Depoimentos */
.testimonials-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(20, 25, 45, 0.8), rgba(10, 15, 25, 0.5));
    border: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 16px;
    position: relative;
}



.t-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
    border: 2px solid rgba(0, 240, 255, 0.3);
}

.testimonial-card:nth-child(2) .avatar-img {
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.4);
    border-color: rgba(138, 43, 226, 0.3);
}

.testimonial-card:nth-child(3) .avatar-img {
    box-shadow: 0 0 10px rgba(255, 85, 0, 0.4);
    border-color: rgba(255, 85, 0, 0.3);
}

.t-info {
    display: flex;
    flex-direction: column;
}

.t-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.t-age {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Pricing */
.pricing-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pricing-tier {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-tier.pro {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.05), rgba(15, 20, 35, 0.8));
}

.badge-rec {
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--neon-blue);
    color: #03050b;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    letter-spacing: 1px;
}

.tier-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tier-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.tier-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    flex-grow: 1;
}

.tier-features li {
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 0.5rem;
}

.pro-benefits p {
    font-size: 0.9rem;
    color: var(--neon-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tier-price {
    font-size: 2.5rem;
    font-weight: 800;
}

/* Decision */
.decision-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 12px;
}

/* FAQ */
.faq-row.accordion {
    margin-bottom: 0.6rem;
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 8px;
    background: rgba(10, 15, 30, 0.4);
    overflow: hidden;
}

.faq-q-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-q-box:hover {
    background: rgba(0, 240, 255, 0.05);
}

.faq-q {
    font-size: 1.05rem;
    margin: 0;
    pointer-events: none;
}

.faq-icon {
    font-size: 1.3rem;
    color: var(--neon-blue);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.faq-row.accordion.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-a {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0 1rem 0.8rem;
    margin: 0;
}

/* Footer Moderno */
.main-footer {
    margin-top: 2rem;
    border-top: 1px dashed rgba(0, 240, 255, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-info .info-item {
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.1);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    color: var(--text-main);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s;
}

.footer-info .info-item:hover {
    background: rgba(0, 240, 255, 0.1);
}

.footer-link {
    color: var(--neon-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-link:hover {
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    .footer-brand {
        max-width: 50%;
    }
    .footer-info {
        align-items: flex-end;
        max-width: 50%;
    }
}

/* Animations Core */
.slide-up {
    animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

[class*="delay-"] { opacity: 0; }
.delay-1 { animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards; }
.delay-2 { animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards; }
.delay-3 { animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards; }
.delay-4 { animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards; }

.slide-up-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-up-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-on-scroll {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.delay-on-scroll.visible {
    opacity: 1;
    transform: translateX(0);
}

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

/* Desktop override */
@media (min-width: 768px) {
    .container { max-width: 800px; }
    .headline { font-size: 2.5rem; }
    .pricing-container { flex-direction: row; justify-content: center; align-items: stretch; }
    .pricing-tier { flex: 1; max-width: 350px; }
    .testimonials-stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .testimonial-card { padding: 1.5rem 1rem; }
    .faq-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .faq-row { margin-bottom: 0; }
}

/* Upsell Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--bg-base);
    border: 1px solid var(--neon-blue);
    padding: 2rem;
    border-radius: 12px;
    max-width: 90%;
    width: 400px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}
