:root {
  --bg: #0a0a0a;
  --text: #ffffff;
  --accent: #7c3aed;
  --accent-light: #a78bfa;
  --card-bg: #1a1a1a;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
.container { max-width: 1100px; margin:0 auto; padding:0 2rem; }

/* Header */
.header { position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(0,0,0,0.9); padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.nav-container { height: 80px; display: flex; align-items: center; justify-content: center; }
.logo { height: 50px; display: block; margin: 0 auto; }
.particles-canvas { position: fixed; inset: 0; z-index: -1; }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-center { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
#typing { font-size: clamp(2rem, 8vw, 4rem); font-weight: 800; color: var(--accent-light); }
.cursor { color: var(--accent); animation: blink 0.8s infinite; }
@keyframes blink { 50% { opacity: 0; } }
.subtitle { font-size: 1.2rem; margin: 1.5rem 0 3rem; color: #b9bbbe; }

/* Conócenos con palabras clave moradas */
.conocenos-text h3 { font-size: 1.8rem; color: var(--accent-light); margin-bottom: 1rem; }
.conocenos-text p { margin-bottom: 1.2rem; line-height: 1.7; color: #ccc; text-align: justify; }
.conocenos-text .keyword { color: var(--accent); font-weight: 600; } /* Esta es la regla morada */
.conocenos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; align-items: center; }
.conocenos-img img { width: 100%; border-radius: 15px; border: 1px solid var(--accent); }

/* Slider lento */
.negocios-slider { overflow: hidden; background: #0f0f0f; padding: 60px 0; }
.slider-wrapper { display: flex; width: 100%; }
.slider-track { display: flex; width: calc(350px * 12); animation: scroll 45s linear infinite; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-350px * 6)); } }
.slide { width: 330px; background: var(--card-bg); margin: 0 10px; border-radius: 12px; display: flex; align-items: center; padding: 20px; flex-shrink: 0; border: 1px solid #333; }
.slide i { font-size: 2rem; color: var(--accent); margin-right: 15px; }
.slide-info h3 { font-size: 1.1rem; margin-bottom: 5px; }
.slide-info p { font-size: 0.85rem; color: #888; line-height: 1.3; }

/* Pasos */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; }
.step-card { background: var(--card-bg); padding: 25px; border-radius: 10px; border-left: 3px solid var(--accent); }
.step-number { background: var(--accent); width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 15px; font-weight: bold; color: white; }

/* PLANES ESTILO IMAGEN (Blancos) */
.section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 3.5rem; color: var(--accent-light); font-size: 2.5rem; font-family: 'Outfit', sans-serif; }
.pricing-grid-pro { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; align-items: stretch; }
.price-card-pro { background: #ffffff; color: #1a1a1a; padding: 40px 25px; border-radius: 15px; position: relative; transition: 0.3s; display: flex; flex-direction: column; }
.price-card-pro.featured { border: 3px solid var(--accent); transform: scale(1.03); z-index: 2; }
.discount-badge { position: absolute; top: 15px; right: 15px; background: #e8f5e9; color: #2e7d32; padding: 4px 10px; border-radius: 5px; font-size: 0.7rem; font-weight: 700; }
.popular-tag { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 800; }
.main-price { font-size: 2.2rem; font-weight: 800; margin: 15px 0 5px; color: #000; }
.extra-benefit { color: var(--accent); font-weight: 700; font-size: 0.9rem; margin-bottom: 25px; }
.btn-select { display: block; text-align: center; padding: 12px; border: 2px solid #000; border-radius: 8px; text-decoration: none; color: #000; font-weight: 700; transition: 0.3s; margin-bottom: 30px; }
.btn-select.highlight { background: #000; color: #fff; }
.btn-select:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.features-list { list-style: none; margin-top: auto; border-top: 1px solid #eee; padding-top: 20px; }
.features-list li { margin-bottom: 8px; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.features-list i { color: #2e7d32; }

footer { text-align: center; padding: 3rem; border-top: 1px solid #222; margin-top: 50px; background: #000; }
.footer-links { margin-bottom: 1rem; }
.footer-links a { color: var(--accent-light); text-decoration: none; margin: 0 5px; }