:root {
  --bg: #f5f7fb;
  --text: #0f172a;
  --muted: #6b7280;
  --primary: #22c55e;
  --primary-soft: rgba(34, 197, 94, 0.1);
  --primary-strong: #16a34a;
  --surface: #ffffff;
  --border-subtle: rgba(15, 23, 42, 0.06);
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --navbar-h: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe 0, #f5f7fb 40%, #f9fafb 100%);
  color: var(--text);
}

body {
  min-height: 100vh;
}

/* NAVBAR */

header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(245, 247, 251, 0.96),
    rgba(245, 247, 251, 0.85),
    transparent
  );
}

.navbar {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 10px;
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 18px;
  color: #0f172a;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  transition: color 0.18s ease, opacity 0.18s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 9px 16px;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff !important;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.35);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  background: #0f172a;
  border-radius: 999px;
}

.nav-links-mobile {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px 10px;
  display: none;
  flex-direction: column;
  gap: 6px;
}

.nav-links-mobile a {
  font-size: 15px;
  padding: 8px 0;
  text-decoration: none;
  color: var(--muted);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

/* MAIN LAYOUT */

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}

/* HERO */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 48px;
}

.hero-left {
  position: relative;
}

.hero-gradient {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at top left, rgba(96, 165, 250, 0.24), transparent),
    radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.15), transparent);
  opacity: 0.9;
  filter: blur(18px);
  pointer-events: none;
}

.hero-main-box {
  position: relative;
  padding: 26px 26px 26px;
  border-radius: 26px;
  background: linear-gradient(135deg, #0f172a, #020617);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.55);
  color: #e5e7eb;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: #a5b4fc;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.4);
  margin-bottom: 12px;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.3);
}

.hero-title {
  font-size: 32px;
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}

.hero-highlight {
  background: linear-gradient(135deg, #22c55e, #a3e635);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 0 0 14px;
  font-size: 14px;
  color: #e5e7eb;
  opacity: 0.88;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 16px;
}

.hero-meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  display: inline-block;
  margin-right: 6px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-note {
  font-size: 11px;
  color: #9ca3af;
  margin: 0;
}

/* HERO RIGHT (CARD) */

.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  width: 100%;
  max-width: 360px;
  border-radius: 24px;
  background: rgba(248, 250, 252, 0.9);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
  padding: 16px 16px 18px;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 12px;
}

.hero-card-pill {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.08);
  color: #166534;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-signal-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-card-city {
  font-size: 11px;
  color: #6b7280;
}

.hero-card-main {
  background: radial-gradient(circle at top left, #e0f2fe 0, #ffffff 46%);
  border-radius: 18px;
  padding: 12px;
}

.hero-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 12px;
  background: transparent;
  color: #4b5563;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.hero-tag {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  color: #4b5563;
}

.hero-resto-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-resto-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 8px 10px;
}

.hero-resto-avatar {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
}

.hero-resto-text {
  flex: 1;
}

.hero-resto-name {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
}

.hero-resto-meta {
  font-size: 11px;
  color: #6b7280;
}

.hero-chip {
  font-size: 10px;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  font-weight: 500;
}

/* SECTIONS GENERALES */

.section {
  margin-bottom: 48px;
}

.section-header {
  margin-bottom: 20px;
}

.section-kicker {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #22c55e;
  margin-bottom: 4px;
}

.section-title {
  margin: 0 0 6px;
  font-size: 24px;
  letter-spacing: 0.01em;
}

.section-subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* GRID PASOS / BENEFICIOS / TESTIMONIOS */

.steps-grid,
.benefits-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step-card,
.benefit-card,
.testimonial-card,
.card {
  background: var(--surface);
  border-radius: 18px;
  padding: 18px 18px 18px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.step-number {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-title,
.benefit-title {
  margin: 0 0 4px;
  font-size: 16px;
}

.step-text {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.benefit-kicker {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0ea5e9;
  margin-bottom: 4px;
}

.benefit-list {
  margin: 8px 0 0;
  padding-left: 16px;
  font-size: 13px;
  color: var(--muted);
}

.benefit-list li + li {
  margin-top: 4px;
}

/* TESTIMONIOS */

.testimonial-quote {
  margin: 0 0 10px;
  font-size: 13px;
  color: #111827;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
}

.testimonial-name {
  font-size: 13px;
  font-weight: 600;
}

.testimonial-role {
  font-size: 11px;
  color: var(--muted);
}

/* CTA FINAL */

.cta-final {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: center;
  padding: 18px 18px 18px;
  border-radius: 22px;
  background: radial-gradient(circle at top left, #dcfce7 0, #f9fafb 42%);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.cta-final-title {
  margin: 0 0 6px;
  font-size: 20px;
}

.cta-final-subtitle {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.cta-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* BOTONES */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: #22c55e;
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(34, 197, 94, 0.45);
}

.btn-primary:hover {
  background: #16a34a;
}

.btn-outline {
  background: transparent;
  color: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.04);
  color: #0f172a;
}

/* FORMULARIOS GENÉRICOS */

.form-row {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 13px;
  font-family: inherit;
  outline: none;
  background: #ffffff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.25);
}

textarea {
  min-height: 90px;
  resize: vertical;
}

.form-hint {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

.error-message {
  font-size: 11px;
  color: #b91c1c;
  margin-top: 4px;
}

input.error,
select.error,
textarea.error {
  border-color: #b91c1c;
  background: #fef2f2;
}

/* ALERTAS */

.alert {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
}

.alert-success {
  background: #ecfdf3;
  color: #166534;
  border: 1px solid rgba(34, 197, 94, 0.5);
}

.alert-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.55);
}

.mt-md {
  margin-top: 14px;
}

/* FOOTER */

footer {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(248, 250, 252, 0.9);
  margin-top: 16px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 20px 26px;
  font-size: 12px;
  color: var(--muted);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

/* MOBILE RESPONSIVE */

@media (max-width: 768px) {
  .navbar {
    padding: 10px 14px;
  }

  main {
    padding: 20px 14px 40px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links-mobile {
    display: flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .hero-right {
    justify-content: flex-start;
  }

  .hero-main-box {
    padding: 18px 16px 18px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .hero-meta {
    font-size: 11px;
  }

  .hero-card {
    max-width: 100%;
  }

  .steps-grid,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .step-card,
  .benefit-card,
  .testimonial-card,
  .card {
    padding: 14px 14px 14px;
  }

  .cta-final {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .cta-final-actions {
    justify-content: flex-start;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  /* HERO CLUB - NUEVO ESTILO AMIGABLE */

.hero-club {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  padding: 40px 0;
}

.hero-club-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 16px;
}

.hero-club-title {
  margin: 0 0 16px;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-club-title .highlight {
  color: #3b82f6;
}

.hero-club-subtitle {
  margin: 0 0 24px;
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

.hero-club-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.btn-large {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
}

.btn-secondary {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border: 2px solid #3b82f6;
}

.btn-secondary:hover {
  background: rgba(59, 130, 246, 0.2);
}

.hero-club-stats {
  display: flex;
  gap: 32px;
}

.stat {
  text-align: left;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #3b82f6;
}

.stat-label {
  font-size: 13px;
  color: #6b7280;
  margin-top: 4px;
}

.hero-club-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-club-circle {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  opacity: 0.2;
}

.hero-club-emoji {
  position: relative;
  font-size: 120px;
  z-index: 10;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* BENEFICIOS GRID */

.beneficios {
  margin-bottom: 60px;
}

.section-title {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 700;
}

.section-subtitle {
  margin: 0 0 28px;
  font-size: 16px;
  color: #6b7280;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.beneficio-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.15);
  text-align: center;
}

.beneficio-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.beneficio-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #0f172a;
}

.beneficio-card p {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
}

/* PASOS */

.como-funciona {
  margin-bottom: 60px;
}

.pasos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.paso-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.05));
  padding: 28px 20px;
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  text-align: center;
}

.paso-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #3b82f6;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.paso-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: #0f172a;
}

.paso-card p {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}

/* TESTIMONIOS */

.testimonios {
  margin-bottom: 60px;
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonio-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}

.testimonio-stars {
  font-size: 16px;
  margin-bottom: 12px;
}

.testimonio-text {
  margin: 0 0 12px;
  font-size: 14px;
  color: #111827;
  font-style: italic;
  line-height: 1.6;
}

.testimonio-author {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #3b82f6;
}

/* CTA FINAL */

.cta-final-club {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  color: #ffffff;
  padding: 60px 40px;
  border-radius: 24px;
  text-align: center;
  margin-bottom: 60px;
}

.cta-final-club h2 {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 700;
}

.cta-final-club p {
  margin: 0 0 24px;
  font-size: 16px;
  opacity: 0.95;
}

.cta-final-club .btn-primary {
  background: #ffffff;
  color: #3b82f6;
}

.cta-final-club .btn-primary:hover {
  background: #f3f4f6;
}

/* FAQ */

.faq {
  margin-bottom: 60px;
}

.faq-item {
  background: #ffffff;
  padding: 20px;
  margin-bottom: 12px;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
}

.faq-item p {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}

/* FOOTER */

footer {
  background: linear-gradient(to bottom, #f9fafb, #f3f4f6);
  border-top: 1px solid #e5e7eb;
  padding: 40px 0 20px;
}

.footer-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 20px;
}

.footer-section h4 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
}

.footer-section p {
  margin: 0 0 8px;
  font-size: 13px;
  color: #6b7280;
}

.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 6px;
}

.footer-section ul li a {
  font-size: 13px;
  color: #6b7280;
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: #3b82f6;
}

.footer-socials {
  display: flex;
  gap: 12px;
  font-size: 20px;
}

.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  border-top: 1px solid #e5e7eb;
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #9ca3af;
}

/* RESPONSIVE MOBILE */

@media (max-width: 768px) {
  .hero-club {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  .hero-club-title {
    font-size: 28px;
  }

  .hero-club-subtitle {
    font-size: 14px;
  }

  .hero-club-actions {
    flex-direction: column;
  }

  .hero-club-visual {
    display: none;
  }

  .hero-club-stats {
    flex-direction: column;
    gap: 16px;
  }

  .beneficios-grid,
  .pasos-grid,
  .testimonios-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 24px;
  }

  .cta-final-club {
    padding: 40px 20px;
  }

  .cta-final-club h2 {
    font-size: 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

}
