/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #00ff88;
    --dark-bg: #0a1628;
    --darker-bg: #051020;
    --text-silver: #c0c0c0;
    --text-muted: #666;
    --border-color: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Orbitron', 'Courier New', monospace;
    background: var(--dark-bg);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== BACKGROUND ANIMATION ===== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at bottom, #1b2735 0%, #0a1628 100%);
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e0e0e0 0%, #888 100%);
    background-clip: text;              /* ← ADICIONE ISTO (padrão) */
    -webkit-background-clip: text;      /* ← Mantenha isto (WebKit/Safari) */
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-silver);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.nav-cta {
    border: 1px solid var(--primary-green);
    padding: 8px 20px;
    border-radius: 3px;
    color: var(--primary-green) !important;
}

.nav-cta:hover {
    background: var(--primary-green);
    color: var(--dark-bg) !important;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    width: 100%;
}

/* Dragon Container */
.dragon-container {
    position: relative;
    margin: 0 auto 40px;
    animation: dragonFloat 6s ease-in-out infinite;
}

.dragon-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.3));
}


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

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

/* WAITING Text */
.waiting-text {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.8em;
    color: var(--primary-green);
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
    margin: 30px 0;
}

.waiting-text span {
    display: inline-block;
    animation: letterPulse 3s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
}

@keyframes letterPulse {
    0%, 100% { 
        opacity: 0.6; 
        transform: translateY(0) scale(1);
    }
    50% { 
        opacity: 1; 
        transform: translateY(-5px) scale(1.05);
        text-shadow: 0 0 40px var(--primary-green);
    }
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-silver);
    margin-bottom: 10px;
    letter-spacing: 3px;
    font-weight: 400;
}

.subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

/* Waitlist Form */
.waitlist-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.waitlist-form input {
    padding: 15px 25px;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    min-width: 320px;
    font-family: inherit;
    transition: all 0.3s;
}

.waitlist-form input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.waitlist-form input::placeholder {
    color: var(--text-muted);
}

.cta-button {
    padding: 15px 35px;
    font-size: 1rem;
    background: transparent;
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
    border-radius: 3px;
    cursor: pointer;
    font-weight: 400;
    letter-spacing: 2px;
    transition: all 0.3s;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    background: var(--primary-green);
    color: var(--dark-bg);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
    transform: translateY(-2px);
}

.button-arrow {
    transition: transform 0.3s;
}

.cta-button:hover .button-arrow {
    transform: translateX(5px);
}

.form-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 15px;
}

/* Social Proof */
.social-proof {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.proof-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.proof-logos {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: var(--text-silver);
    font-size: 0.9rem;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 100px 20px;
    background: var(--darker-bg);
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-silver);
    letter-spacing: 3px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

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

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 20px;
    background: var(--dark-bg);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-silver);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 20px;
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-green);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.contact-email {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-email a {
    color: var(--primary-green);
    text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .dragon-image {
        max-width: 100%;
    }
    
    .waiting-text {
        font-size: 2rem;
        letter-spacing: 0.5em;
    }
    
    .waiting-text span {
        animation: none;
    }
    
    .waitlist-form {
        flex-direction: column;
        align-items: center;
    }
    
    .waitlist-form input {
        width: 100%;
        max-width: 320px;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .dragon-eye-glow {
        width: 20px;
        height: 20px;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
