/* RESET BÁSICO Y GENERALES */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #080b11;
  color: #ffffff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* MARGEN DE DESPLAZAMIENTO PARA EVITAR QUE EL HEADER TAPE LOS TÍTULOS */
section[id] {
  scroll-margin-top: 100px;
}

/* HEADER */
.site-header {
  background-color: #0b0f17;
  border-bottom: 1px solid #1a2332;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
}

.main-nav a {
  color: #94a3b8;
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: #ffffff;
}

.btn-header {
  background-color: #0099ff;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* 1. HERO SECTION */
.hero-section {
  padding: 60px 0 80px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1.2;
  max-width: 620px;
}

.hero-tag {
  color: #00ff88;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.hero-text h1 {
  font-size: 2.7rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-description {
  color: #94a3b8;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background-color: #0099ff;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.btn-secondary {
  border: 1px solid #1a2332;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* IMAGEN PROPORCIONAL Y COMPLETA */
.hero-image {
  flex: 0.8;
  max-width: 380px;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

/* 2. QUÉ OFRECE MAGIC */
.about-section {
  padding: 80px 0;
  border-top: 1px solid #1a2332;
}

.about-header {
  margin-bottom: 50px;
}

.about-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.section-desc {
  color: #94a3b8;
  max-width: 550px;
  font-size: 1.05rem;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.offer-item {
  border-top: 1px solid #1a2332;
  padding-top: 25px;
}

.offer-title {
  color: #00ff88;
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.offer-item p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 3. PLANES DE SUSCRIPCIÓN */
.pricing-section {
  padding: 80px 0;
  border-top: 1px solid #1a2332;
}

.pricing-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.plan-card {
  background-color: #0e1420;
  border: 1px solid #1c2738;
  border-radius: 12px;
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-card.featured {
  border-color: #00ff88;
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: #00ff88;
  color: #000;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 12px;
}

.plan-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.price {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.price span {
  font-size: 1rem;
  color: #94a3b8;
}

.plan-card p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.plan-card ul {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.plan-card ul li {
  color: #cbd5e1;
  margin-bottom: 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-card ul li::before {
  content: "✓";
  color: #00ff88;
  font-weight: bold;
}

.btn-plan {
  display: block;
  text-align: center;
  border: 1px solid #1a2332;
  color: white;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn-plan.primary {
  background-color: #0099ff;
  border-color: #0099ff;
}

/* 4. CÓMO EMPEZAR Y RESUMEN DE PAGO */
.steps-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  width: 100%;
}

.steps-left {
  flex: 1;
  max-width: 600px;
}

.steps-left h2 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 15px;
}

.subtitle {
  color: #94a3b8;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.pay-steps {
  list-style: none;
}

.pay-steps li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #1a2332;
}

.step-num {
  border: 1px solid #0099ff;
  color: #0099ff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 4px;
  flex-shrink: 0;
}

.steps-right {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
}

.pay-card {
  background-color: #0e1420;
  border: 1px solid #1c2738;
  border-radius: 12px;
  padding: 28px;
  width: 100%;
}

.pay-card-title {
  color: #00ff88;
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.pay-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #1a2536;
}

.pay-row:last-child {
  border-bottom: none;
}

.pay-label {
  color: #94a3b8;
  font-weight: 500;
  white-space: nowrap;
}

.pay-value {
  color: #ffffff;
  text-align: right;
  font-weight: 500;
}

.contact-info-below {
  margin-top: 20px;
  text-align: center;
  color: #ffffff;
  font-size: 0.95rem;
}

.contact-info-below strong {
  display: block;
  margin-top: 6px;
  color: #00ff88;
  font-size: 1.2rem;
}

/* 5. PREGUNTAS FRECUENTES */
.faq-section {
  padding: 80px 0;
  border-top: 1px solid #1a2332;
}

.faq-header {
  margin-bottom: 30px;
}

.faq-header h2 {
  font-size: 2rem;
}

.faq-header p {
  color: #94a3b8;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
}

.faq-item {
  background-color: #0e1420;
  border: 1px solid #1c2738;
  padding: 24px;
  border-radius: 8px;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.faq-item p {
  color: #94a3b8;
  font-size: 0.95rem;
}

/* FOOTER */
.site-footer {
  background-color: #05070a;
  border-top: 1px solid #121926;
  padding: 40px 0;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand strong {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 15px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  margin-right: 15px;
}

.footer-info {
  max-width: 600px;
  color: #64748b;
  font-size: 0.85rem;
}

.footer-info .copy {
  margin-top: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
  }

  .hero-image {
    max-width: 100%;
    justify-content: center;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .steps-section {
    flex-direction: column;
  }

  .steps-right {
    max-width: 100%;
  }

  .footer-container {
    flex-direction: column;
  }
}