:root {
    --bg: #0a0e17;
    --bg-light: #111827;
    --primary: #00ff88;
    --primary-glow: rgba(0, 255, 136, 0.4);
    --text: #ffffff;
    --text-muted: #9ca3af;
    --gradient: linear-gradient(90deg, #00ff88 0%, #00b8ff 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-gradient { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-center { text-align: center; }

/* NAVBAR */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 0;
}

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

.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }

.btn-login {
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid var(--primary);
    font-weight: 600;
    transition: 0.3s;
}
.btn-login:hover { background: var(--primary); color: #000; }
.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; }

/* HERO */
.hero { padding: 160px 0 100px; position: relative; overflow: hidden; }
/* Glow effect de fondo */
.hero::before {
    content: ''; position: absolute; top: -100px; right: 0;
    width: 500px; height: 500px;
    background: var(--primary-glow);
    filter: blur(150px); opacity: 0.3; z-index: -1;
}

.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

.badge {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 12px; border-radius: 20px; font-size: 0.85rem; color: var(--primary);
    display: inline-block; margin-bottom: 20px;
}

.hero-content h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; font-weight: 800; }
.hero-content p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 30px; line-height: 1.6; max-width: 500px; }

.hero-btns { display: flex; gap: 15px; margin-bottom: 40px; }
.btn-primary {
    background: var(--primary); color: #000; padding: 14px 30px; border-radius: 8px; font-weight: 700; transition: 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,255,136,0.2); }
.btn-secondary {
    background: transparent; color: white; padding: 14px 30px; border-radius: 8px; font-weight: 600; border: 1px solid rgba(255,255,255,0.2);
}

.social-proof p { font-size: 0.9rem; margin-bottom: 10px; }
.social-proof .icons a { font-size: 1.5rem; color: var(--text-muted); margin-right: 15px; transition: 0.3s; }
.social-proof .icons a:hover { color: var(--primary); }

/* HERO IMAGE (Tu Foto) */
.image-wrapper { position: relative; }
.image-wrapper img { width: 100%; max-width: 450px; z-index: 1; position: relative; }
.float-card {
    position: absolute; background: rgba(17, 24, 39, 0.9); backdrop-filter: blur(10px);
    padding: 15px 20px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1);
    font-weight: 700; font-size: 0.9rem; z-index: 2; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex; align-items: center; gap: 10px;
}
.float-card i { color: var(--primary); }
.card-1 { top: 20%; left: -20px; }
.card-2 { bottom: 20%; right: 0px; }

/* SECCIONES COMUNES */
.section { padding: 100px 0; }
.section-header { margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; }

/* TOOLS GRID */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-card, .feature-box {
    background: var(--bg-light); padding: 30px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.05);
}
.icon-box { font-size: 2.5rem; margin-bottom: 20px; }
.feature-box.active { border-color: var(--primary); position: relative; }
.tag {
    position: absolute; top: -12px; right: 20px; background: var(--primary); color: black;
    padding: 4px 10px; border-radius: 4px; font-size: 0.75rem; font-weight: 700;
}
.btn-text { color: var(--primary); font-weight: 600; margin-top: 20px; display: inline-block; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 900px; margin: 0 auto; }
.price-card {
    background: var(--bg-light); padding: 40px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.05); text-align: center;
}
.price-card.featured { border-color: var(--primary); transform: scale(1.05); background: #0f1c23; }
.price-card h3 { font-size: 1.2rem; margin-bottom: 15px; color: var(--text-muted); }
.price-card .price { font-size: 2rem; font-weight: 800; margin-bottom: 30px; color: white; }
.price-card ul { text-align: left; margin-bottom: 30px; }
.price-card li { margin-bottom: 15px; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.price-card li i { color: var(--primary); }
.btn-outline {
    display: block; width: 100%; padding: 12px; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; transition: 0.3s;
}
.btn-outline:hover { border-color: white; }

/* FOOTER */
footer { padding: 50px 0; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 50px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; }
.footer-socials a { margin-left: 20px; font-size: 1.2rem; color: var(--text-muted); }

/* MOBILE */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Simplificado para no liar con JS menu complejo */
    .menu-toggle { display: block; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-btns { justify-content: center; }
    .image-wrapper { margin-top: 40px; }
    .price-card.featured { transform: none; }
    .nav-links.active {
        display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; width: 100%;
        background: var(--bg-light); padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.1);
    }
}