/* ESTILOS STARLINK APEXIT */
:root {
    --primary: #0066ff;
    --dark: #050505;
    --light: #ffffff;
    --gray-bg: #f8f9fa;
    --text-main: #333333;
    --text-light: #666666;
    --accent: #25d366;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-main);
    background-color: var(--light);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; }

/* NAVBAR */
.navbar {
    padding: 15px 0;
    background: var(--dark);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
}
.flex-nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.4rem; font-weight: 800; color: white; letter-spacing: -1px; }
.logo span { color: var(--primary); }

/* BOTONES */
.btn {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,102,255,0.3); }
.btn-outline { border: 1px solid var(--primary); color: var(--primary); padding: 10px 20px; font-size: 0.9rem; }
.btn-block { display: block; width: 100%; }
.btn-lg { font-size: 1.2rem; }
.btn-cta-final { background: white; color: var(--primary); font-size: 1.2rem; padding: 20px 40px; border-radius: 8px; font-weight: 700; text-decoration: none; }

/* HERO */
.hero {
    padding: 180px 0 120px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?auto=format&fit=crop&q=80&w=1472') no-repeat center center/cover;
    text-align: center;
    color: white;
}
.badge { background: var(--primary); color: white; padding: 6px 16px; border-radius: 20px; font-size: 0.75rem; text-transform: uppercase; font-weight: 800; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.1; margin: 1.5rem 0; }
.subtitle { font-size: 1.2rem; color: #ccc; margin-bottom: 2rem; max-width: 800px; margin-inline: auto; }

/* BENEFICIOS */
.benefits { padding: 100px 0; background: var(--gray-bg); }
.section-title { text-align: center; margin-bottom: 60px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.benefit-card { background: white; padding: 40px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; }
.benefit-card .icon { font-size: 3rem; margin-bottom: 20px; display: block; }

/* VALOR */
.value-desc { padding: 100px 0; }
.flex-row { display: flex; flex-wrap: wrap; align-items: center; gap: 60px; }
.val-content, .val-img { flex: 1; min-width: 320px; }
.img-container { border-radius: 15px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.img-container img { width: 100%; display: block; }
.check-list { list-style: none; margin-top: 25px; }
.check-list li { margin-bottom: 12px; font-weight: 500; }
.check-list li::before { content: "✓"; color: var(--primary); font-weight: 900; margin-right: 12px; }

/* TESTIMONIOS */
.testimonials { padding: 100px 0; background: var(--dark); color: white; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.test-card { background: #111; padding: 40px; border-left: 5px solid var(--primary); border-radius: 0 15px 15px 0; }
cite { display: block; margin-top: 20px; color: var(--primary); font-style: normal; font-weight: 800; }

/* PRECIOS */
.pricing { padding: 100px 0; }
.pricing-box { max-width: 500px; margin: 0 auto; padding: 60px 40px; border: 2.5px solid var(--primary); border-radius: 24px; position: relative; background: white; text-align: center; }
.promo { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; padding: 6px 24px; border-radius: 30px; font-size: 0.85rem; font-weight: 800; }
.price { font-size: 2.5rem; font-weight: 900; color: var(--primary); margin: 25px 0; }
.check-list-centered { list-style: none; margin-bottom: 35px; text-align: left; display: inline-block; }
.check-list-centered li { margin-bottom: 10px; font-size: 0.95rem; }
.check-list-centered li::before { content: "✓"; color: var(--primary); font-weight: 900; margin-right: 12px; }
.risk-free { font-size: 0.8rem; color: var(--text-light); margin-top: 20px; font-weight: 500; }

/* CTA FINAL */
.cta-final { padding: 120px 0; background: var(--primary); color: white; text-align: center; }

/* FOOTER */
footer { padding: 80px 0; background: #000; color: #666; text-align: center; }
footer .logo { margin-bottom: 25px; display: block; }
.legal { margin-top: 40px; border-top: 1px solid #222; padding-top: 30px; font-size: 0.8rem; }

/* WHATSAPP */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    background-color: var(--accent);
    width: 65px; height: 65px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3); z-index: 1100;
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1) rotate(10deg); }
.whatsapp-icon { width: 38px; fill: white; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .flex-row { flex-direction: column; text-align: center; }
    .val-content { order: 1; }
    .val-img { order: 2; }
    .btn-lg { width: 100%; }
}