/* CSS Variables for Theme */
:root {
    --bg-dark: #050505; /* Deepest black/grey */
    --surface-dark: #121212;
    --surface-glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 184, 0, 0.15);
    
    --primary-yellow: #FFB800;
    --primary-hover: #E6A600;
    
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
    --reveal-duration: 0.8s;
    --reveal-delay: 0.2s;
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

[data-reveal] {
    opacity: 0;
    transition: transform var(--reveal-duration) var(--ease-out-expo), opacity var(--reveal-duration) var(--ease-out-expo);
    pointer-events: none;
    will-change: transform, opacity;
}

/* Fallback: Se o JS falhar, mostramos o conteúdo após um tempo de segurança ou via classe */
.no-js [data-reveal], 
.reveal-init [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
}

[data-reveal="fade-up"] { transform: translateY(30px); }
[data-reveal="fade-in"] { transform: scale(0.98); }
[data-reveal="zoom-in"] { transform: scale(1.05); }
[data-reveal="fade-right"] { transform: translateX(-30px); }
[data-reveal="fade-left"] { transform: translateX(30px); }

[data-reveal].revealed {
    opacity: 1;
    transform: translate(0) scale(1);
    pointer-events: auto;
}

/* Delay Utilities */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* Base Styles */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    opacity: 0.6;
    transition: var(--transition);
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-yellow);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(15px); opacity: 0; }
}

.arrows span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--text-muted);
    border-right: 2px solid var(--text-muted);
    transform: rotate(45deg);
    margin: -5px;
    animation: scrollArrows 2s infinite;
}

.arrows span:nth-child(2) { animation-delay: 0.2s; }
.arrows span:nth-child(3) { animation-delay: 0.4s; }

@keyframes scrollArrows {
    0% { opacity: 0; transform: rotate(45deg) translate(-10px, -10px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(10px, 10px); }
}

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

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.w-100 {
    width: 100%;
}

.mt-auto {
    margin-top: auto;
}

/* Glassmorphism Utility */
.glass {
    background: var(--surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
}

/* Typography */
h1, h2, h3, .logo {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.section-title {
    font-family: 'Anton', var(--font-heading);
    font-size: clamp(2.2rem, 6vw, 4rem);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.text-highlight {
    color: var(--primary-yellow);
    display: inline-block;
}

.badge-premium {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 184, 0, 0.1);
    color: var(--primary-yellow);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-transform: uppercase;
    animation: fadeInDown 0.8s var(--ease-out-expo);
}

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

p {
    color: var(--text-muted);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--primary-yellow);
    color: #000;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.4);
}

.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    transition: none;
    animation: shine-btn 4s infinite;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-yellow);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 8px;
    border: 2px solid var(--primary-yellow);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-outline:hover {
    background-color: rgba(255, 184, 0, 0.1);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo-site {
    height: 34px; /* Ajuste conforme necessário */
    width: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 184, 0, 0.2));
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover .logo-site {
    transform: scale(1.08);
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--text-muted);
}

.nav-links a:not(.btn-outline):hover {
    color: var(--text-main);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.nav-login {
    font-size: 0.9rem;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}
.nav-login:hover {
    color: var(--text-main);
}
.btn-pill {
    background: var(--primary-yellow);
    color: #000;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 1.2;
    font-family: var(--font-body);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-pill:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #0a0a0a;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 60%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: breathingGlow 8s ease-in-out infinite;
}

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

.hero-blob {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.05) 0%, transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: moveBlob 20s infinite alternate;
}

@keyframes moveBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.2); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid rgba(255,184,0,0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-yellow);
    margin-bottom: 25px;
    background: rgba(255,184,0,0.05);
}
.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--primary-yellow);
    border-radius: 50%;
}

/* Headline */
.headline {
    font-family: 'Anton', var(--font-heading);
    font-size: clamp(3.5rem, 10vw, 6rem);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    font-weight: 400;
}
.text-yellow {
    color: var(--primary-yellow);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline-dark:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.4);
}

.hero-trust {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    color: #888;
}
.hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.dot-yellow {
    width: 4px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 50%;
}

/* Hero Visual (Image + UI Card) */
.hero-image-card {
    position: relative;
    border-radius: 20px;
    background: #111;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.05);
    animation: levitate 6s ease-in-out infinite;
}

.hero-image-placeholder {
    width: 100%;
    height: 550px;
    position: relative;
}
.hero-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.dashboard-snippet {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(15px);
    transition: var(--transition);
}

.dashboard-snippet:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary-yellow);
    background: rgba(25, 25, 25, 0.95);
}

.snippet-header {
    margin-bottom: 15px;
}
.snippet-date {
    font-size: 0.65rem;
    font-weight: 700;
    color: #888;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 5px;
}
.snippet-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.snippet-title-row h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    text-transform: none;
    font-family: var(--font-body);
    font-weight: 600;
}
.trophy-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: transparent;
    color: var(--primary-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,184,0,0.3);
    font-size: 0.9rem;
}

.snippet-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.stat-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
}
.stat-icon {
    font-size: 0.9rem;
    margin-bottom: 5px;
}
.stat-value {
    font-family: 'Anton', var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 2px;
    letter-spacing: 1px;
}
.stat-label {
    font-size: 0.55rem;
    color: #888;
    letter-spacing: 1px;
    font-weight: 700;
}

/* Sections Base */
section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    background: #050505;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* --- Features Section (New Reference Layout) --- */
.features-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-split-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: var(--bg-dark);
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.features-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 60px;
    padding-right: 40px;
}

.feature-card-v2 {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 30px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
}

.feature-card-v2:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-yellow);
    box-shadow: 20px 20px 40px rgba(0,0,0,0.4);
}

.feature-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(1000px circle at var(--mouse-x) var(--mouse-y), rgba(255, 184, 0, 0.04), transparent 50%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.feature-card-v2:hover::before {
    opacity: 1;
}

.card-icon-v2, .card-content-v2 {
    position: relative;
    z-index: 1;
}

.card-icon-v2 {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(184, 134, 11, 0.03) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.golden-icon {
    width: 28px;
    height: 28px;
    color: #FFD700;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.card-headline-v2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: 5px;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-subheadline-v2 {
    font-size: 0.95rem;
    color: rgba(255, 184, 0, 0.9);
    margin-bottom: 10px;
    font-weight: 500;
}

.card-bullets-v2 {
    list-style: none;
    padding: 0;
    margin-top: auto;
}

.card-bullets-v2 li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.card-bullets-v2 li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 214, 0, 0.3);
}

/* Bullet points restored with brand colors */

/* Mockup Styles */
.features-image-v2 {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.mockup-container {
    position: relative;
    z-index: 1;
    height: 100%;
}

.app-mockup-v2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.features-image-v2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--bg-dark) 0%, var(--bg-dark) 2%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

.main-feature-img {
    filter: brightness(0.8) contrast(1.1);
    transition: filter 0.5s ease;
}

.feature-card-v2:hover ~ .features-image-v2 .main-feature-img {
    filter: brightness(1) contrast(1.2);
}

/* Athlete Badge */
.athlete-badge {
    position: absolute;
    bottom: 50px;
    right: 40px;
    background: var(--primary-yellow);
    padding: 12px 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    z-index: 10;
    animation: floatingBadge 3s ease-in-out infinite;
}

.badge-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #000;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    color: rgba(0,0,0,0.8);
    font-weight: 700;
    letter-spacing: 1px;
}

@keyframes floatingBadge {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.mockup-glow {
    display: none;
}

@media (max-width: 992px) {
    .features-split-v2 {
        grid-template-columns: 1fr;
        gap: 20px;
        border-radius: 20px;
    }
    
    .features-list-v2 {
        padding: 40px 20px;
    }

    .feature-card-v2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 30px 25px;
    }

    .features-image-v2 {
        position: static;
        order: -1;
        min-height: 400px;
    }

    .athlete-badge {
        bottom: 30px;
        right: 20px;
        padding: 10px 20px;
    }
}



/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #050505;
}

.pricing-spotlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.pricing-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: visible;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transition: 0.5s;
    pointer-events: none;
    border-radius: inherit;
}

.pricing-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 10px;
}
.pricing-card .price span {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.plan-desc {
    font-size: 0.95rem;
    margin-bottom: 30px;
    min-height: 50px;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
}

.plan-features li {
    margin-bottom: 14px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.pricing-card:hover .plan-features li {
    transform: translateX(5px);
}

.plan-features li::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFB800' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.highlight-card {
    border-color: var(--primary-yellow);
    background: rgba(255, 184, 0, 0.03);
    transform: scale(1.05);
    z-index: 2;
}

.highlight-card:hover {
    transform: scale(1.08) translateY(-12px);
    border-color: var(--primary-yellow);
    box-shadow: 0 25px 50px rgba(255, 184, 0, 0.15);
}
.highlight-card h3 {
    color: var(--primary-yellow);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-yellow);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    z-index: 10;
}

.pricing-card .btn-primary {
    position: relative;
    overflow: hidden;
}

.pricing-card .btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    transition: none;
    animation: shine-btn 4s infinite;
}

@keyframes shine-btn {
    0% { left: -60%; }
    20% { left: 120%; }
    100% { left: 120%; }
}

/* Contact Section */
.contact-container {
    padding: 60px;
    background: radial-gradient(circle at center, rgba(255,184,0,0.05) 0%, rgba(255,255,255,0.02) 100%);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-actions {
    margin: 40px 0 20px;
}

.contact-subtext {
    font-size: 0.9rem;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* RG do Lutador Section - Premium Transparent Composition */
.rg-section {
    background: radial-gradient(circle at 70% 50%, #151515 0%, #050505 100%);
    position: relative;
    overflow: hidden;
    padding: 140px 0;
    border-top: 1px solid rgba(255, 184, 0, 0.08);
}

.rg-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.rg-info-column {
    flex: 1;
    max-width: 550px;
    z-index: 10;
}

.rg-headline {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3.2rem, 8vw, 5.2rem); /* Reduzido para melhor legibilidade */
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.rg-subheadline {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem); /* Otimizado para leitura */
    color: var(--text-main);
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0.9;
    max-width: 500px;
}

.rg-explanation.glass {
    padding: 28px; /* Ajustado */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-left: 4px solid var(--primary-yellow);
    border-radius: 4px 20px 20px 4px;
    margin-bottom: 40px;
    max-width: 480px;
}

.rg-explanation p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #ddd;
}

.rg-steps-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rg-step-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-icon {
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-yellow);
    opacity: 0.4;
    padding-top: 5px;
}

.step-txt h4 {
    font-family: 'Anton', sans-serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.step-txt p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Visual Layer (Premium 3D Composition) */
.rg-visual-premium {
    flex: 1.4;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 800px;
    perspective: 2000px; /* Perspectiva 3D aumentada */
}

.rg-glow-aura {
    position: absolute;
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.18) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 1;
    animation: breathingGlow 10s ease-in-out infinite;
}

.rg-fighter-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    transition: transform 0.8s var(--ease-out-expo);
}

.rg-fighter-new {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 40px 120px rgba(0,0,0,0.95));
    animation: floatFighterPremium 10s ease-in-out infinite;
    transform-origin: center bottom;
}

@keyframes floatFighterPremium {
    0%, 100% { transform: translateY(0) rotateX(2deg) rotateY(-2deg) scale(1); }
    50% { transform: translateY(-40px) rotateX(-2deg) rotateY(2deg) scale(1.03); }
}

/* Scanner Line Effect */
.rg-scanner-line {
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
    box-shadow: 0 0 40px var(--primary-yellow), 0 0 80px var(--primary-yellow);
    z-index: 6;
    opacity: 0;
    animation: scannerMove 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scannerMove {
    0% { top: 10%; opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { top: 90%; opacity: 0; }
}

/* HUD HUD HUD (Augmented Reality Style) */
.rg-hud-stats {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    pointer-events: none;
    transform-style: preserve-3d;
}

.hud-item {
    position: absolute;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 184, 0, 0.6);
    padding: 15px 22px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.8), inset 0 0 25px rgba(255, 184, 0, 0.2);
    transform: translateZ(50px);
}

.hud-icon {
    background: rgba(255, 184, 0, 0.2);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 184, 0, 0.4);
}

.hud-data {
    display: flex;
    flex-direction: column;
}

.hud-v { 
    font-family: 'Anton', sans-serif; 
    font-size: 2.1rem; 
    color: #fff; 
    line-height: 1; 
    letter-spacing: 1px;
}

.hud-l { 
    font-size: 0.65rem; 
    color: var(--primary-yellow); 
    letter-spacing: 3px; 
    font-weight: 800; 
    margin-top: 4px;
    text-transform: uppercase;
}

/* More Dynamic Floating Positions with Z-Axis */
.h-1 { top: 15%; left: -2%; animation: floatH1Premium 7s ease-in-out infinite; }
.h-2 { top: 46%; left: -10%; animation: floatH2Premium 8s ease-in-out infinite; animation-delay: 1.5s; }
.h-3 { bottom: 15%; left: 0%; animation: floatH3Premium 9s ease-in-out infinite; animation-delay: 3s; }
.h-4 { top: 35%; right: -5%; animation: floatH4Premium 7.5s ease-in-out infinite; animation-delay: 4.5s; }

@keyframes floatH1Premium {
    0%, 100% { transform: translate3d(0, 0, 50px) rotateY(10deg); }
    50% { transform: translate3d(20px, -30px, 100px) rotateY(-5deg); }
}

@keyframes floatH2Premium {
    0%, 100% { transform: translate3d(0, 0, 80px) rotateY(-15deg); }
    50% { transform: translate3d(-15px, -40px, 150px) rotateY(5deg); }
}

@keyframes floatH3Premium {
    0%, 100% { transform: translate3d(0, 0, 40px) rotateY(5deg); }
    50% { transform: translate3d(25px, -25px, 90px) rotateY(-10deg); }
}

@keyframes floatH4Premium {
    0%, 100% { transform: translate3d(0, 0, 60px) rotateY(-12deg); }
    50% { transform: translate3d(-25px, 25px, 110px) rotateY(8deg); }
}

/* Features Section - The Original Master Layout */
.feature-main-visual {
    position: relative;
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    z-index: 1;
}

.floating-img {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.8));
    animation: levitate 5s ease-in-out infinite;
}

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

.image-glow-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.06) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 184, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 184, 0, 0.1);
    color: var(--primary-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.feature-card:hover .card-icon {
    background: var(--primary-yellow);
    color: #000;
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-family: 'Anton', var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Responsive Update */
@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .floating-img {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .rg-container {
        display: flex;
        flex-direction: column; /* Voltamos para column para controlar o order */
        text-align: center;
        gap: 30px;
        padding-bottom: 40px;
    }
    .rg-info-column {
        display: contents; /* Permite que os filhos sejam ordenados no container pai */
    }
    
    .mini-badge { order: 1; margin: 0 auto; }
    .rg-headline { order: 2; margin-bottom: 10px !important; }
    .rg-subheadline { order: 3; margin-bottom: 20px !important; }
    .rg-visual-premium { order: 4 !important; margin-bottom: 30px; }
    .rg-details { order: 5 !important; width: 100%; }

    .rg-section {
        padding: 60px 0;
        background: #050505;
    }
    .rg-visual-premium {
        min-height: auto;
        width: 100%;
        perspective: none; 
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .rg-fighter-wrapper {
        width: 100%;
        max-width: 450px; /* Image much larger on mobile */
        margin: 0 auto;
    }
    .rg-hud-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        position: relative;
        justify-content: center;
        margin-top: 30px;
        z-index: 20;
        pointer-events: auto;
        width: 100%;
        max-width: 400px;
    }
    .hud-item {
        position: relative;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        animation: floatHudMobile 4s ease-in-out infinite;
        padding: 12px 15px;
        min-width: 150px;
        gap: 10px;
        background: rgba(15, 15, 15, 0.9);
    }
    .hud-icon {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
    .hud-v {
        font-size: 1.4rem;
    }
    .hud-l {
        font-size: 0.55rem;
    }
    @keyframes floatHudMobile {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }
    .rg-explanation.glass {
        border-left: none;
        border-top: 4px solid var(--primary-yellow);
        border-radius: 16px;
        max-width: 100%;
        padding: 25px;
    }
    .rg-steps-vertical {
        align-items: center;
        width: 100%;
    }
    .rg-step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .rg-headline {
        margin-bottom: 20px;
    }
    .rg-subheadline {
        margin-bottom: 30px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        margin: 0 auto;
    }
    .headline {
        font-size: 3.5rem;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .highlight-card {
        transform: scale(1);
    }
    .features-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none; /* simple mobile hide for now */
    }
    #nav-cta {
        display: none;
    }
    .headline-secondary {
        font-size: 2.8rem;
    }
    .features-image-wrapper {
        height: 400px;
    }
}

/* Launch Expectation Section */
.launch-expectation {
    padding: 140px 0;
    background: radial-gradient(circle at center, #1a0a0a 0%, #050505 100%);
    position: relative;
    overflow: hidden;
}

.launch-expectation::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: var(--primary-yellow);
    filter: blur(200px);
    opacity: 0.05;
    pointer-events: none;
}

.launch-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.launch-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 184, 0, 0.1);
    color: var(--primary-yellow);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 184, 0, 0.2);
}

.launch-expectation h2 {
    font-family: 'Anton', var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    line-height: 1.1;
    letter-spacing: 0.05em; /* Aumentado conforme solicitado */
    margin-bottom: 25px;
    text-transform: uppercase;
}

.tester-callout {
    margin-top: 30px;
    font-size: 0.95rem;
    color: var(--text-muted);
    opacity: 0.8;
}

.tester-link {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 700;
    margin-left: 5px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.tester-link:hover {
    border-bottom-color: var(--primary-yellow);
    opacity: 1;
}

.launch-sub {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-main);
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 500;
}

.launch-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 50px;
}

.launch-body p {
    margin-bottom: 20px;
}

.btn-launch {
    display: inline-block;
    padding: 22px 45px;
    background: var(--primary-yellow);
    color: #000;
    text-decoration: none;
    font-family: 'Anton', var(--font-heading);
    font-size: 1.4rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.2);
    position: relative;
}

.btn-launch:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 184, 0, 0.4);
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .launch-expectation h2 {
        font-size: 2.8rem;
    }
    
    .launch-subheadline {
        font-size: 1.2rem;
    }
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    overflow-y: auto;
}

.modal-content {
    background: #0d0d0d;
    margin: 5% auto;
    padding: 50px;
    border: 1px solid rgba(255,184,0,0.2);
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.close-modal {
    color: var(--text-muted);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    position: absolute;
    right: 25px;
    top: 20px;
}

.close-modal:hover {
    color: var(--primary-yellow);
}

.modal-header {
    text-align: center;
    margin-bottom: 35px;
}

.modal-header h2 {
    font-family: 'Anton', var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-yellow);
    margin-bottom: 10px;
}

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

.lead-form .form-group {
    margin-bottom: 20px;
}

.lead-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lead-form input {
    width: 100%;
    padding: 15px;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    transition: var(--transition);
}

.lead-form input:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background: #222;
}
.success-message {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.success-message h3 {
    font-family: 'Anton', var(--font-heading);
    margin-bottom: 15px;
    color: var(--primary-yellow);
}

.success-message p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* --- ANIMATIONS (Reveal & Interactions) --- */
[data-reveal] {
    opacity: 0;
    transition: all 1s var(--ease-out-expo);
}

[data-reveal="fade-up"] {
    transform: translateY(40px);
}

[data-reveal="fade-down"] {
    transform: translateY(-40px);
}

[data-reveal="fade-left"] {
    transform: translateX(-40px);
}

[data-reveal="fade-right"] {
    transform: translateX(40px);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translate(0);
}

/* Staggered Delays (using data-delay) */
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="400"] { transition-delay: 400ms; }
[data-delay="500"] { transition-delay: 500ms; }
[data-delay="600"] { transition-delay: 600ms; }
[data-delay="700"] { transition-delay: 700ms; }
[data-delay="800"] { transition-delay: 800ms; }
[data-delay="900"] { transition-delay: 900ms; }
[data-delay="1000"] { transition-delay: 1000ms; }
