*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; } :root { --brand: #3BA2A4; --brand-hi:#4DC4C6; --dark: #0d1118; --surface: #161b26; --border: #263040; --text: #e8eaf0; --muted: #7a8899; --gold: #f5c842; --dec: #4f8ef7; --cha: #3BA2A4; --ter: #9b7ff4; } html { scroll-behavior: smooth; } body { font-family: 'Syne', sans-serif; background: var(--dark); color: var(--text); line-height: 1.6; } /* ── NAV ── */ nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; gap: 24px; padding: 0 40px; height: 56px; background: rgba(13,17,24,.92); border-bottom: 1px solid var(--border); backdrop-filter: blur(8px); } .nav-logo { font-size: 13px; font-weight: 800; letter-spacing: .08em; color: var(--brand); text-transform: uppercase; text-decoration: none; } .nav-logo span { color: var(--muted); font-weight: 400; } .nav-links { display: flex; gap: 24px; margin-left: auto; } .nav-links a { font-size: 12px; font-weight: 600; color: var(--muted); text-decoration: none; transition: color .15s; } .nav-links a:hover { color: var(--brand); } .nav-cta { padding: 8px 20px; border-radius: 6px; background: var(--brand); color: var(--dark); font-size: 12px; font-weight: 700; text-decoration: none; transition: background .15s; } .nav-cta:hover { background: var(--brand-hi); } /* ── HERO ── */ .hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 100px 40px 60px; text-align: center; background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(59,162,164,.12) 0%, transparent 70%); } .hero-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 14px; border-radius: 20px; border: 1px solid rgba(59,162,164,.4); background: rgba(59,162,164,.08); font-size: 11px; font-weight: 700; color: var(--brand); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 28px; } .hero h1 { font-size: clamp(36px, 6vw, 72px); font-weight: 800; line-height: 1.1; max-width: 820px; } .hero h1 span { color: var(--brand); } .hero p { font-size: clamp(15px, 2vw, 18px); color: var(--muted); max-width: 560px; margin: 20px auto 40px; } .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; } .btn-primary { padding: 14px 32px; border-radius: 8px; background: var(--brand); color: var(--dark); font-size: 14px; font-weight: 700; text-decoration: none; transition: background .15s, transform .1s; } .btn-primary:hover { background: var(--brand-hi); transform: translateY(-1px); } .btn-secondary { padding: 14px 32px; border-radius: 8px; border: 1px solid var(--border); color: var(--text); font-size: 14px; font-weight: 600; text-decoration: none; transition: border-color .15s; } .btn-secondary:hover { border-color: var(--brand); color: var(--brand); } /* Preview del árbol SVG */ .hero-preview { margin-top: 60px; width: 100%; max-width: 760px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 24px; overflow: hidden; } .preview-bar { display: flex; align-items: center; gap: 6px; margin-bottom: 20px; } .preview-dot { width: 10px; height: 10px; border-radius: 50%; } /* ── FEATURES ── */ .features { padding: 100px 40px; max-width: 1100px; margin: 0 auto; } .section-label { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); margin-bottom: 12px; } .section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.2; margin-bottom: 48px; max-width: 520px; } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; } .feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 24px; transition: border-color .2s; } .feature-card:hover { border-color: rgba(59,162,164,.5); } .feature-icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(59,162,164,.12); border: 1px solid rgba(59,162,164,.3); display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 14px; } .feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; } .feature-card p { font-size: 13px; color: var(--muted); line-height: 1.6; } /* ── PRICING ── */ .pricing { padding: 100px 40px; background: var(--surface); } .pricing-inner { max-width: 900px; margin: 0 auto; text-align: center; } .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 48px; text-align: left; } .plan { background: var(--dark); border: 1px solid var(--border); border-radius: 12px; padding: 28px; } .plan.featured { border-color: var(--brand); background: linear-gradient(135deg, rgba(59,162,164,.08) 0%, var(--dark) 100%); } .plan-badge { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px; border-radius: 10px; margin-bottom: 16px; } .plan-badge.free { background: rgba(122,136,153,.15); color: var(--muted); } .plan-badge.pro { background: rgba(59,162,164,.15); color: var(--brand); } .plan-badge.inst { background: rgba(245,200,66,.12); color: var(--gold); } .plan-name { font-size: 22px; font-weight: 800; margin-bottom: 4px; } .plan-price { font-size: 36px; font-weight: 800; color: var(--brand); margin: 12px 0; } .plan-price span { font-size: 14px; font-weight: 400; color: var(--muted); } .plan-desc { font-size: 12px; color: var(--muted); margin-bottom: 20px; } .plan-features { list-style: none; margin-bottom: 24px; } .plan-features li { font-size: 13px; padding: 5px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; } .plan-features li:last-child { border-bottom: none; } .plan-features li::before { content: '✓'; color: var(--brand); font-weight: 700; } .plan-features li.no::before { content: '✗'; color: var(--muted); } .plan-features li.no { color: var(--muted); } .plan-btn { display: block; width: 100%; padding: 12px; border-radius: 7px; text-align: center; font-size: 13px; font-weight: 700; text-decoration: none; transition: all .15s; } .plan-btn.primary { background: var(--brand); color: var(--dark); } .plan-btn.primary:hover { background: var(--brand-hi); } .plan-btn.outline { border: 1px solid var(--border); color: var(--text); } .plan-btn.outline:hover { border-color: var(--brand); color: var(--brand); } /* ── ABOUT ── */ .about { padding: 100px 40px; max-width: 760px; margin: 0 auto; text-align: center; } .about p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; } .about strong { color: var(--text); } /* ── FOOTER ── */ footer { padding: 32px 40px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; } footer p { font-size: 12px; color: var(--muted); } .footer-logo { font-size: 12px; font-weight: 800; color: var(--brand); letter-spacing: .08em; }