/**
 * CRIMIFY - Landing Page Styles
 * Tema: Vermelho Neon + Glassmorphism + Futurístico
 */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --neon-red: #ff0033;
    --neon-red-bright: #ff1744;
    --neon-red-dark: #cc0029;
    --neon-red-dim: #990020;
    --neon-glow: 0 0 10px rgba(255, 0, 51, 0.5), 0 0 40px rgba(255, 0, 51, 0.2), 0 0 80px rgba(255, 0, 51, 0.1);
    --neon-glow-strong: 0 0 10px rgba(255, 0, 51, 0.8), 0 0 40px rgba(255, 0, 51, 0.4), 0 0 80px rgba(255, 0, 51, 0.2), 0 0 120px rgba(255, 0, 51, 0.1);
    --neon-text-glow: 0 0 7px rgba(255, 0, 51, 0.8), 0 0 20px rgba(255, 0, 51, 0.4), 0 0 40px rgba(255, 0, 51, 0.2);

    --glass-bg: rgba(15, 15, 20, 0.6);
    --glass-bg-light: rgba(255, 255, 255, 0.03);
    --glass-bg-hover: rgba(255, 0, 51, 0.08);
    --glass-border: rgba(255, 0, 51, 0.15);
    --glass-border-hover: rgba(255, 0, 51, 0.4);
    --glass-blur: blur(20px);

    --color-bg: #050508;
    --color-bg-dark: #030305;
    --color-text-primary: #f0f0f5;
    --color-text-secondary: #8a8a9a;
    --color-text-muted: #4a4a5a;
    --color-gold: #ffd700;
    --color-silver: #c0c0c0;
    --color-bronze: #cd7f32;

    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 64px;
    --spacing-2xl: 100px;

    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    cursor: default;
}

/* ============================================
   MOUSE GLOW CURSOR
   ============================================ */
.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 51, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    will-change: transform;
    transition: opacity 0.3s;
}

/* ============================================
   PARTICLE CANVAS
   ============================================ */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   SCANLINES OVERLAY
   ============================================ */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
    pointer-events: none;
    z-index: 1;
}

/* ============================================
   NAVIGATION
   ============================================ */
.landing-nav-top {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    max-width: min(920px, calc(100vw - 24px));
    margin: 0 12px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 6px 12px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--neon-glow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.landing-nav-top a {
    padding: 10px 18px;
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 40px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.landing-nav-top a:hover {
    color: var(--neon-red-bright);
    background: rgba(255, 0, 51, 0.1);
}

.landing-nav-top a.cta-nav {
    background: var(--neon-red);
    color: white;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.4);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.landing-nav-top a.cta-nav:hover {
    background: var(--neon-red-bright);
    box-shadow: var(--neon-glow-strong);
    transform: scale(1.05);
}

.landing-nav-top a.nav-link-login {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text-primary);
}

.landing-nav-top a.nav-link-login:hover {
    border-color: var(--neon-red);
    color: var(--neon-red-bright);
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.2);
}

/* Mobile Nav */
.landing-nav-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-top: 1px solid var(--glass-border);
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -4px 30px rgba(255, 0, 51, 0.1);
}

.landing-nav-bottom .nav-btn {
    flex: 1;
    padding: 14px 8px;
    background: none;
    border: none;
    color: var(--color-text-secondary);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
}

.landing-nav-bottom .nav-btn.active {
    color: var(--neon-red-bright);
    text-shadow: var(--neon-text-glow);
}

.landing-nav-bottom .nav-btn.cta-nav {
    background: var(--neon-red);
    color: white;
    font-weight: 800;
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.3);
}

.landing-nav-bottom .nav-btn-login {
    flex: 1;
    padding: 14px 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-secondary);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 0, 51, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--neon-red-bright);
    margin-bottom: var(--spacing-lg);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-red);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--neon-red);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-primary);
    letter-spacing: -1px;
}

.hero-title .neon-word {
    color: var(--neon-red-bright);
    text-shadow: var(--neon-text-glow);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--neon-red-bright);
    text-shadow: var(--neon-text-glow);
    display: block;
}

.stat-label {
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: 4px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    justify-content: center;
    background: var(--neon-red);
    color: white;
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--neon-red-bright);
    box-shadow: var(--neon-glow-strong);
    transform: translateY(-3px) scale(1.02);
}

.btn-secondary {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    justify-content: center;
    background: transparent;
    color: var(--color-text-primary);
    border: 2px solid var(--glass-border);
    font-family: var(--font-body);
}

.btn-secondary:hover {
    border-color: var(--neon-red);
    color: var(--neon-red-bright);
    box-shadow: var(--neon-glow);
    transform: translateY(-3px);
}

.btn-large {
    padding: 20px 56px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--spacing-2xl) var(--spacing-md);
    position: relative;
    z-index: 2;
}

.section-dark {
    background: rgba(0, 0, 0, 0.4);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
    letter-spacing: -0.5px;
}

.section-title .neon {
    color: var(--neon-red-bright);
    text-shadow: var(--neon-text-glow);
}

.section-subtitle {
    font-size: 16px;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--neon-red);
    margin: 0 auto var(--spacing-lg);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--neon-red);
}

/* ============================================
   GLASS CARDS
   ============================================ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 51, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.glass-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: var(--neon-glow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    background: var(--glass-bg-hover);
}

.glass-card:hover::before {
    opacity: 1;
}

/* ============================================
   HOW IT WORKS - STEPS
   ============================================ */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    position: relative;
    opacity: 1;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--neon-red);
    color: var(--neon-red-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.2), inset 0 0 20px rgba(255, 0, 51, 0.1);
    text-shadow: var(--neon-text-glow);
    transition: all 0.4s;
}

.step-card:hover .step-number {
    background: var(--neon-red);
    color: white;
    box-shadow: var(--neon-glow-strong);
}

.step-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-description {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ============================================
   RANKING / MONEY SECTION
   ============================================ */
.section-ranking {
    background: linear-gradient(180deg, rgba(255, 0, 51, 0.03) 0%, transparent 50%, rgba(255, 0, 51, 0.03) 100%);
    position: relative;
}

.section-ranking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-red), transparent);
    box-shadow: 0 0 20px var(--neon-red);
}

.ranking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto var(--spacing-xl);
    align-items: center;
}

.ranking-visual {
    text-align: center;
}

.ranking-podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: var(--spacing-lg);
}

.podium-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.podium-bar {
    width: 80px;
    border-radius: var(--radius) var(--radius) 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 16px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    position: relative;
    overflow: hidden;
}

.podium-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.podium-1 {
    height: 160px;
    background: linear-gradient(180deg, var(--neon-red), var(--neon-red-dark));
    color: white;
    box-shadow: 0 0 30px rgba(255, 0, 51, 0.4);
    order: 2;
}

.podium-2 {
    height: 120px;
    background: linear-gradient(180deg, rgba(192, 192, 192, 0.3), rgba(192, 192, 192, 0.1));
    border: 1px solid rgba(192, 192, 192, 0.3);
    color: var(--color-silver);
    order: 1;
}

.podium-3 {
    height: 90px;
    background: linear-gradient(180deg, rgba(205, 127, 50, 0.3), rgba(205, 127, 50, 0.1));
    border: 1px solid rgba(205, 127, 50, 0.3);
    color: var(--color-bronze);
    order: 3;
}

.podium-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.podium-1 + .podium-label,
.podium-item:nth-child(2) .podium-label {
    color: var(--neon-red-bright);
    text-shadow: var(--neon-text-glow);
}

.ranking-info-content h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
}

.ranking-info-content h3 .neon {
    color: var(--neon-red-bright);
    text-shadow: var(--neon-text-glow);
}

.ranking-info-content p {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.ranking-perks {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-lg);
}

.ranking-perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--color-text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ranking-perks li .perk-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 0, 51, 0.1);
    border: 1px solid rgba(255, 0, 51, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* Prize highlight box */
.prize-highlight {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 2px solid var(--neon-red);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    position: relative;
    box-shadow: var(--neon-glow);
}

.prize-highlight::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--neon-red), transparent, var(--neon-red));
    z-index: -1;
    opacity: 0.3;
    filter: blur(20px);
}

.prize-label {
    display: block;
    font-size: 14px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.prize-amount {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--neon-red-bright);
    text-shadow: var(--neon-text-glow);
    margin: 0 auto var(--spacing-xs);
    text-align: center;
}

.prize-desc {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.prize-link {
    color: var(--neon-red-bright);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.prize-link:hover {
    text-shadow: var(--neon-text-glow);
}

/* ============================================
   IA DEMO / CHAT
   ============================================ */
.ia-demo {
    max-width: 650px;
    margin: 0 auto var(--spacing-lg);
}

.chat-container {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    min-height: 220px;
    position: relative;
    overflow: hidden;
}

.chat-container::before {
    content: 'INTERROGATÓRIO EM ANDAMENTO';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px;
    text-align: center;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--neon-red);
    background: rgba(255, 0, 51, 0.05);
    border-bottom: 1px solid var(--glass-border);
    text-shadow: 0 0 10px rgba(255, 0, 51, 0.5);
}

.chat-message {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    margin-top: 12px;
}

.chat-message:first-child {
    margin-top: 40px;
}

.chat-message.chat-user {
    justify-content: flex-end;
}

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 0, 51, 0.15);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.chat-text {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 12px 18px;
    max-width: 70%;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

.chat-user .chat-text {
    background: rgba(255, 0, 51, 0.15);
    border-color: rgba(255, 0, 51, 0.3);
    color: var(--color-text-primary);
}

.chat-message.typing .chat-text::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--neon-red);
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ============================================
   STRESS INDICATOR (IA DEMO)
   ============================================ */
.stress-indicator {
    max-width: 650px;
    margin: var(--spacing-md) auto 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

.stress-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.stress-bar-wrapper {
    flex: 1;
    height: 6px;
    background: rgba(255, 0, 51, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.stress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--neon-red-dim), var(--neon-red), var(--neon-red-bright));
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(255, 0, 51, 0.6);
    transition: width 2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.stress-value {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    color: var(--neon-red-bright);
    text-shadow: var(--neon-text-glow);
    min-width: 40px;
    text-align: right;
}

/* IA Features Row */
.ia-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin: var(--spacing-lg) auto;
    max-width: 700px;
}

.ia-feature-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 0, 51, 0.08);
    border: 1px solid rgba(255, 0, 51, 0.25);
    border-radius: 30px;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.08);
}

/* Garantir visibilidade em seções escuras */
.section-dark .ia-feature-item {
    background: rgba(255, 0, 51, 0.12);
    border-color: rgba(255, 0, 51, 0.35);
    color: var(--color-text-primary);
}

.ia-feature-item:hover {
    border-color: var(--neon-red);
    color: var(--color-text-primary);
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.2);
}

.ia-feature-icon {
    font-size: 16px;
}

.chat-delayed {
    opacity: 0;
    transform: translateY(10px);
}

/* ============================================
   AUDIENCE CARDS
   ============================================ */
.audience-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto var(--spacing-md);
}

.audience-card {
    opacity: 1;
}

.audience-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.audience-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.audience-text {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.audience-note {
    text-align: center;
    font-size: 16px;
    color: var(--color-text-primary);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--neon-red);
    border-radius: var(--radius-lg);
    max-width: 550px;
    margin: var(--spacing-lg) auto 0;
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.15);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    text-align: left;
    opacity: 1;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
    font-style: italic;
    opacity: 0.9;
}

.testimonial-author {
    font-size: 13px;
    color: var(--neon-red-bright);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    transition: all 0.3s;
    opacity: 1;
}

.faq-item:hover {
    border-color: var(--glass-border-hover);
}

.faq-item.active {
    border-color: var(--neon-red);
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.1);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-md);
    background: none;
    border: none;
    color: var(--color-text-primary);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--neon-red-bright);
}

.faq-question::after {
    content: '+';
    font-size: 22px;
    color: var(--neon-red);
    transition: transform 0.3s;
    text-shadow: 0 0 10px rgba(255, 0, 51, 0.5);
    font-weight: 300;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 var(--spacing-md);
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-md) var(--spacing-md);
}

.faq-answer a {
    color: var(--neon-red-bright);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-shadow: var(--neon-text-glow);
}

/* ============================================
   LANDING STATS GRID
   ============================================ */
.landing-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.landing-stat-box {
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
}

.landing-stat-number {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--neon-red-bright);
    text-shadow: var(--neon-text-glow);
    display: block;
    margin-bottom: var(--spacing-xs);
}

.landing-stat-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 1023px) {
    .landing-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   CTA FINAL
   ============================================ */
.section-cta-final {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.section-cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-red), transparent);
    box-shadow: 0 0 20px var(--neon-red);
}

.section-cta-final::after {
    content: '';
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 51, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-final-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
}

.cta-final-subtitle {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.landing-footer {
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--color-bg-dark);
    position: relative;
    z-index: 2;
}

.footer-text {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.footer-disclaimer {
    font-size: 11px;
    color: var(--color-text-muted);
    font-style: italic;
    opacity: 0.6;
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    max-width: 440px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--neon-glow);
    animation: modalIn 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 28px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.modal-close:hover {
    color: var(--neon-red);
    background: rgba(255, 0, 51, 0.1);
}

.modal-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-primary);
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    color: var(--color-text-primary);
    font-size: 15px;
    font-family: var(--font-body);
    transition: all 0.3s;
    outline: none;
}

.form-input:focus {
    border-color: var(--neon-red);
    box-shadow: 0 0 0 3px rgba(255, 0, 51, 0.1), 0 0 15px rgba(255, 0, 51, 0.1);
}

.form-input::placeholder {
    color: var(--color-text-muted);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    font-size: 13px;
    color: var(--color-text-secondary);
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--neon-red);
}

.form-checkbox a {
    color: var(--neon-red-bright);
    text-decoration: none;
}

.form-error {
    background: rgba(255, 0, 51, 0.1);
    border: 1px solid rgba(255, 0, 51, 0.3);
    color: var(--neon-red-bright);
    padding: var(--spacing-sm);
    border-radius: var(--radius);
    font-size: 14px;
    display: none;
}

.form-error.active {
    display: block;
}

/* ============================================
   GSAP REVEAL CLASSES
   Only apply initial hidden state when GSAP is loaded
   ============================================ */
.gsap-ready .reveal-up {
    opacity: 0;
    transform: translateY(60px);
}

.gsap-ready .reveal-left {
    opacity: 0;
    transform: translateX(-60px);
}

.gsap-ready .reveal-right {
    opacity: 0;
    transform: translateX(60px);
}

.gsap-ready .reveal-scale {
    opacity: 0;
    transform: scale(0.9);
}

/* CSS-only fallback animations when GSAP is not ready */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.float-element {
    position: absolute;
    pointer-events: none;
    opacity: 0.06;
    font-size: 120px;
    z-index: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1023px) {
    .landing-nav-top {
        display: none;
    }

    .steps {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .audience-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .testimonials {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .ranking-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ranking-info-content {
        order: -1;
    }

    .hero {
        padding-bottom: 100px;
    }

    .section {
        padding: var(--spacing-xl) var(--spacing-sm);
    }

    .hero-stats {
        gap: var(--spacing-md);
    }

    .stat-number {
        font-size: 22px;
    }

    .podium-bar {
        width: 60px;
    }

    .podium-1 { height: 120px; }
    .podium-2 { height: 90px; }
    .podium-3 { height: 70px; }
}

@media (min-width: 1024px) {
    .landing-nav-bottom {
        display: none;
    }

    .section {
        padding: var(--spacing-2xl) var(--spacing-lg);
    }
}

/* ============================================
   SPECIAL ANIMATIONS
   ============================================ */
@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.8; }
    94% { opacity: 1; }
    96% { opacity: 0.9; }
    97% { opacity: 1; }
}

.neon-flicker {
    animation: neonFlicker 4s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Glitch effect for neon words */
@keyframes glitchClip {
    0% { clip-path: inset(40% 0 60% 0); }
    20% { clip-path: inset(10% 0 85% 0); }
    40% { clip-path: inset(80% 0 5% 0); }
    60% { clip-path: inset(25% 0 58% 0); }
    80% { clip-path: inset(60% 0 15% 0); }
    100% { clip-path: inset(40% 0 60% 0); }
}

.hero-title .neon-word {
    position: relative;
    display: inline-block;
}

.hero-title .neon-word::before,
.hero-title .neon-word::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.hero-title:hover .neon-word::before {
    opacity: 0.8;
    color: #ff0033;
    animation: glitchClip 0.3s steps(2) 1;
    transform: translateX(-2px);
    text-shadow: -2px 0 #ff0033;
}

.hero-title:hover .neon-word::after {
    opacity: 0.8;
    color: #00ffff;
    animation: glitchClip 0.3s steps(2) 1 reverse;
    transform: translateX(2px);
    text-shadow: 2px 0 #00ffff;
}

.glitch-wrapper {
    position: relative;
    display: inline-block;
}

/* ============================================
   ANIMATED GRADIENT BORDER ON SECTIONS
   ============================================ */
@keyframes borderGlow {
    0%, 100% { border-color: rgba(255, 0, 51, 0.15); }
    50% { border-color: rgba(255, 0, 51, 0.4); }
}

.section-dark {
    animation: borderGlow 4s ease-in-out infinite;
    border-top: 1px solid;
    border-bottom: 1px solid;
}

/* ============================================
   TESTIMONIAL QUOTE MARKS
   ============================================ */
.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: rgba(255, 0, 51, 0.08);
    line-height: 1;
    pointer-events: none;
}

/* Horizontal line separator */
.neon-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-red), transparent);
    box-shadow: 0 0 10px var(--neon-red);
    margin: 0;
    border: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-red-dim);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-red);
}

::selection {
    background: rgba(255, 0, 51, 0.3);
    color: white;
}
