/* ====================================================
   COSECHA DE SUEÑOS — CSS PRINCIPAL
   Playful Modern Design System
   ==================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --orange:      #FF8C42;
  --orange-dark: #E07530;
  --orange-light:#FFF0E6;
  --blue:        #42A5F5;
  --blue-dark:   #1E88E5;
  --blue-light:  #E3F2FD;
  --green:       #66BB6A;
  --green-dark:  #43A047;
  --green-light: #E8F5E9;

  /* Neutrals */
  --white:       #FFFFFF;
  --off-white:   #F9FAFB;
  --gray-light:  #F3F4F6;
  --gray:        #9CA3AF;
  --gray-dark:   #4B5563;
  --charcoal:    #1F2937;

  /* Typography */
  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Quicksand', sans-serif;

  /* Spacing */
  --section-py:  96px;
  --container:   1180px;

  /* Radius */
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   30px;
  --radius-xl:   40px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(0,0,0,.07);
  --shadow-md:   0 8px 30px rgba(0,0,0,.10);
  --shadow-lg:   0 16px 50px rgba(0,0,0,.14);
  --shadow-card: 0 4px 24px rgba(66,165,245,.12);

  /* Transitions */
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 800;
  color: var(--charcoal);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 700; }

p { max-width: 65ch; }

.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}
.eyebrow-light { color: rgba(255,255,255,.8); }

/* ---------- Layout ---------- */
.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: .75rem; }
.section-sub {
  font-size: 1.1rem;
  color: var(--gray-dark);
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  border-radius: var(--radius-full);
  padding: .85rem 2rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #FF6B35);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255,140,66,.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-dark), #E5561A);
  box-shadow: 0 12px 32px rgba(255,140,66,.45);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}
.btn-ghost:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--orange);
  color: var(--white);
  padding: .6rem 1.4rem;
  font-size: .875rem;
}
.btn-nav:hover { background: var(--orange-dark); transform: translateY(-1px); }

.btn-full { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem 2rem; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar.menu-open { background-color: #ffffff; backdrop-filter: none; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon { font-size: 1.6rem; }
.logo-text  { font-family: var(--font-head); font-size: 1.1rem; color: var(--charcoal); }
.logo-text strong { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links li a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--gray-dark);
  transition: color var(--transition);
}
.nav-links li a:hover { color: var(--orange); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding-block: 80px var(--section-py);
  overflow: hidden;
  background: linear-gradient(160deg, #FFF8F3 0%, #EDF7FF 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url('assets/bg_pattern.png');
  background-size: 600px;
  opacity: .2;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: var(--blue-light);
  display: inline-block;
  padding: .35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  max-width: none;
}

.hero-copy h1 { margin-bottom: 1.25rem; }
.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--orange), #FF6B35);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--gray-dark);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 1.25rem;
}

.hero-trust {
  font-size: .85rem;
  color: var(--gray);
  max-width: none;
}

.hero-image-wrap { position: relative; }

.hero-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}
.badge-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.badge-txt {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-dark);
  line-height: 1.4;
}

/* ---------- PROOF BAR ---------- */
.proof-bar {
  background: var(--charcoal);
  padding-block: 28px;
}
.proof-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.proof-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  color: var(--gray);
  max-width: none;
}
.proof-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.proof-logos li {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
}

/* ---------- PROBLEM ---------- */
.problem {
  padding-block: var(--section-py);
  background: var(--off-white);
}
.problem h2 { margin-bottom: .75rem; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.pain-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.pain-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pain-emoji { font-size: 2.5rem; display: block; margin-bottom: 16px; }
.pain-card p { font-size: .95rem; color: var(--gray-dark); max-width: none; margin-inline: auto; }

.problem-cta { text-align: center; }
.problem-bridge {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  max-width: none;
}

/* ---------- BENEFITS ---------- */
.benefits {
  position: relative;
  padding-block: var(--section-py);
  overflow: hidden;
}
.benefits-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/bg_pattern.png');
  background-size: 400px;
  opacity: .08;
  pointer-events: none;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.benefit-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }

.benefit-icon-wrap {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform var(--transition);
}
.benefit-card:hover .benefit-icon-wrap { transform: scale(1.1); }

/* Color variants for icons */
.icon-blue   { background: var(--blue-light); color: var(--blue-dark); }
.icon-orange { background: var(--orange-light); color: var(--orange-dark); }
.icon-green  { background: var(--green-light); color: var(--green-dark); }
.icon-pink   { background: #FCE4EC; color: #D81B60; }

.benefit-svg {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.benefit-card h3 { margin-bottom: .75rem; }
.benefit-card p  { font-size: .95rem; color: var(--gray-dark); max-width: none; }

.benefits-cta { text-align: center; }

/* ---------- HOW IT WORKS ---------- */
.how-works {
  padding-block: var(--section-py);
  background: linear-gradient(160deg, var(--blue-light), var(--green-light));
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin-inline: auto;
  counter-reset: steps;
}

.step-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
  padding-bottom: 40px;
  position: relative;
}
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 39px;
  top: 78px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--green));
  border-radius: var(--radius-full);
}

.step-num {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--orange), #FF6B35);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(255,140,66,.35);
}

.step-body h3 { margin-bottom: .5rem; color: var(--charcoal); }
.step-body p  { font-size: .95rem; color: var(--gray-dark); max-width: none; }

/* ---------- WORKSHOPS ---------- */
.workshops {
  padding-block: var(--section-py);
  background: var(--off-white);
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.workshops-loading {
  grid-column: 1/-1;
  text-align: center;
  color: var(--gray);
  font-style: italic;
  padding: 48px;
}

/* Workshop card markup generated by JS */
.workshop-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
}
.workshop-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.workshop-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.workshop-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green-dark);
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .85rem;
  border-radius: var(--radius-full);
  width: fit-content;
}
.workshop-badge.sold-out { background: var(--gray-light); color: var(--gray); }

.workshop-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--charcoal);
}

.workshop-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.workshop-meta span {
  font-size: .88rem;
  color: var(--gray-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.workshop-price {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
}
.workshop-price small { font-size: .85rem; font-weight: 600; color: var(--gray); }

.workshop-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--orange), #FF6B35);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  padding: .85rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(255,140,66,.3);
  margin-top: auto;
}
.workshop-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,140,66,.4); }
.workshop-btn:disabled {
  background: var(--gray-light);
  color: var(--gray);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding-block: var(--section-py);
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 56px;
  align-items: start;
}

.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-card.featured {
  background: linear-gradient(160deg, var(--charcoal), #374151);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}
.testimonial-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.testimonial-card.featured p   { color: rgba(255,255,255,.85); }
.testimonial-card.featured .author-detail { color: rgba(255,255,255,.55); }

.stars { color: #FBBF24; font-size: 1.1rem; letter-spacing: 2px; }

.testimonial-card p { font-size: .97rem; color: var(--gray-dark); font-style: italic; max-width: none; }
.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-name   { display: block; font-weight: 700; font-size: .9rem; }
.author-detail { display: block; font-size: .78rem; color: var(--gray); margin-top: 2px; }

.testimonials-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  padding: 48px;
  background: linear-gradient(135deg, var(--orange-light), var(--blue-light));
  border-radius: var(--radius-xl);
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-label { font-size: .9rem; color: var(--gray-dark); font-weight: 600; }

/* ---------- SIGNUP ---------- */
.signup {
  position: relative;
  padding-block: var(--section-py);
  background: linear-gradient(135deg, var(--charcoal) 0%, #374151 100%);
  overflow: hidden;
}
.signup-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/bg_pattern.png');
  background-size: 500px;
  opacity: .05;
  pointer-events: none;
}

/* MOBILE FIRST: columna única por defecto */
.signup-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Desktop: dos columnas */
@media (min-width: 769px) {
  .signup-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }
}

.signup-copy h2 { color: var(--white); margin-bottom: 1rem; }
.signup-copy p  { color: rgba(255,255,255,.75); margin-bottom: 1.75rem; max-width: 100%; }
.signup-perks { display: flex; flex-direction: column; gap: 10px; }
.signup-perks li { color: rgba(255,255,255,.85); font-weight: 600; font-size: .95rem; }

.signup-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 20px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  box-sizing: border-box;
}

/* Desktop: más padding y radio */
@media (min-width: 769px) {
  .signup-form-wrap {
    border-radius: var(--radius-xl);
    padding: 44px 40px;
  }
}

.form-title {
  margin-bottom: 28px;
  font-size: 1.25rem;
  text-align: center;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  color: var(--charcoal);
}
.form-group input,
.form-group select {
  padding: .8rem 1.1rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(66,165,245,.15);
}
.form-group input.is-error,
.form-group select.is-error { border-color: #EF4444; }

.field-error {
  font-size: .78rem;
  color: #EF4444;
  font-weight: 600;
  min-height: 1.2em;
}

.form-check {
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
.form-check input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; border-radius: 6px; }
.form-check label { font-size: .85rem; font-weight: 500; color: var(--gray-dark); max-width: none; }
.form-check .link { color: var(--blue); text-decoration: underline; }

.form-note {
  text-align: center;
  font-size: .78rem;
  color: var(--gray);
  margin-top: 12px;
  max-width: none;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon { font-size: 4rem; margin-bottom: 16px; }
.form-success h3 { color: var(--green-dark); margin-bottom: .75rem; }
.form-success p  { color: var(--gray-dark); margin-inline: auto; }
.success-sub { font-size: .9rem; color: var(--gray); margin-top: 8px; }

/* ---------- FAQ ---------- */
.faq {
  padding-block: var(--section-py);
  background: var(--off-white);
}
.faq-list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: 16px; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  font-size: 1.4rem;
  transition: transform var(--transition);
  flex-shrink: 0;
  color: var(--orange);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  padding: 0 28px 24px;
  font-size: .95rem;
  color: var(--gray-dark);
  line-height: 1.7;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding-block: 64px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p { font-size: .9rem; margin-top: 12px; max-width: 28ch; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text strong { color: var(--orange); }

.footer-nav h4, .footer-contact h4 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav ul li a {
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-nav ul li a:hover { color: var(--orange); }

.footer-contact p { font-size: .9rem; margin-bottom: 8px; max-width: none; }
.footer-contact a:hover { color: var(--orange); }

.social-links { display: flex; gap: 16px; margin-top: 16px; }
.social-links a {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2);
  padding: .35rem .85rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}
.social-links a:hover { color: var(--orange); border-color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  padding-block: 24px;
  font-size: .82rem;
}

/* ====================================================
   RESPONSIVE
   ==================================================== */

@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .hero-inner { gap: 40px; }
  .signup-inner { gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }

  /* Navbar mobile */
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff; /* Totalmente opaco */
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 48px;
    gap: 32px;
    z-index: 9999;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { font-size: 1.25rem; color: var(--charcoal); font-weight: 700; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy  { order: 1; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-image-wrap { order: 2; }
  .hero-img { height: 340px; }

  /* Steps */
  .step-item { grid-template-columns: 60px 1fr; gap: 18px; }
  .step-num { width: 60px; height: 60px; font-size: 1.1rem; }
  .step-item:not(:last-child)::after { left: 29px; top: 62px; }

  /* Signup mobile adjustments */
  .signup { padding-block: 56px; }
  .signup-copy { text-align: center; }
  .signup-perks li { word-break: break-word; }

  /* Form inputs - mobile */
  .form-group input:not([type="checkbox"]),
  .form-group select,
  .form-group textarea {
    width: 100%;
    font-size: 16px; /* Evita auto-zoom en iOS */
    min-height: 50px;
    box-sizing: border-box;
  }
  .form-check { align-items: flex-start; }
  .form-check input[type="checkbox"] {
    width: 20px; height: 20px;
    min-height: 20px; flex-shrink: 0;
  }
  .form-check label { font-size: 0.82rem; word-break: break-word; max-width: none; }
  .btn-full { width: 100%; min-height: 54px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  /* Stats */
  .testimonials-stats { gap: 32px; padding: 32px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-ghost { text-align: center; justify-content: center; }
  .proof-inner { flex-direction: column; text-align: center; }
  .hero-badge { left: 12px; right: 12px; justify-content: center; }
}
