
    /* ══════════════════════════════════════════════
       CSS VARIABLES & RESET
    ══════════════════════════════════════════════ */
    :root {
      --navy:       #0A1B35;
      --navy-light: #0D2244;
      --navy-card:  #0F2850;
      --purple:     #BE95C4;
      --purple-dark:#9B6FAD;
      --copper:     #B5714A;
      --cream:      #F7F0E6;
      --cream-muted:rgba(247,240,230,0.65);
      --white:      #ffffff;
      --border:     rgba(190,149,196,0.2);
      --border-light:rgba(247,240,230,0.1);


      --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
      --font-body:    'Cormorant Garamond', Georgia, serif;
      --font-label:   'Tenor Sans', sans-serif;

      --radius:  12px;
      --radius-lg: 20px;
      --transition: 0.35s ease;
      --shadow: 0 8px 40px rgba(0,0,0,0.35);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      background-color: var(--navy);
      color: var(--cream);
      font-family: var(--font-body);
      font-size: 18px;
      line-height: 1.7;
      overflow-x: hidden;
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .section-pad { padding: 100px 0; }

    /* ── Scroll animation classes ── */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }
    .reveal-delay-6 { transition-delay: 0.6s; }

    /* ── Kicker label ── */
    .kicker {
      font-family: var(--font-label);
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--purple);
      margin-bottom: 14px;
      display: block;
    }

    /* ── Section headings ── */
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 500;
      line-height: 1.2;
      color: var(--cream);
    }
    .section-title em {
      font-style: italic;
      color: var(--purple);
    }
    .section-sub {
      font-family: var(--font-body);
      font-size: 18px;
      color: var(--cream-muted);
      margin-top: 16px;
      max-width: 600px;
    }

    /* ── Buttons ── */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--purple);
      color: var(--navy);
      font-family: var(--font-label);
      font-size: 14px;
      letter-spacing: 0.05em;
      padding: 14px 30px;
      border-radius: 50px;
      transition: background var(--transition), transform var(--transition);
    }
    .btn-primary:hover { background: var(--purple-dark); transform: translateY(-2px); }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--purple);
      color: var(--cream);
      font-family: var(--font-label);
      font-size: 14px;
      letter-spacing: 0.05em;
      padding: 13px 30px;
      border-radius: 50px;
      transition: background var(--transition), transform var(--transition);
    }
    .btn-outline:hover { background: rgba(190,149,196,0.15); transform: translateY(-2px); }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: var(--font-label);
      font-size: 13px;
      letter-spacing: 0.08em;
      color: var(--purple);
      border: 1px solid rgba(190,149,196,0.4);
      padding: 10px 22px;
      border-radius: 50px;
      transition: all var(--transition);
      margin-bottom: 10px;
    }
    .btn-ghost:hover { background: rgba(190,149,196,0.12); border-color: var(--purple); }

    /* ══════════════════════════════════════════════
       WHATSAPP FLOATING BUTTON
    ══════════════════════════════════════════════ */
    .whatsapp-float {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 999;
      width: 58px;
      height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
    .whatsapp-float svg { width: 30px; height: 30px; fill: white; }

    /* ══════════════════════════════════════════════
       HEADER
    ══════════════════════════════════════════════ */
    #header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 100;
      padding: 20px 0;
      transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
    }
    #header.scrolled {
      background: rgba(10,27,53,0.97);
      box-shadow: 0 2px 30px rgba(0,0,0,0.4);
      padding: 14px 0;
      backdrop-filter: blur(12px);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .logo img { height: 55px; width: auto; }

    nav { display: flex; align-items: center; gap: 36px; }
    nav a {
      font-family: var(--font-label);
      font-size: 13px;
      letter-spacing: 0.06em;
      color: var(--cream);
      opacity: 0.85;
      transition: opacity var(--transition), color var(--transition);
    }
    nav a:hover { opacity: 1; color: var(--purple); }

    .header-cta .btn-primary { padding: 11px 24px; font-size: 13px; }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--cream);
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    .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); }

    .mobile-nav {
      display: none;
      flex-direction: column;
      gap: 0;
      background: rgba(10,27,53,0.98);
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      padding: 16px 24px 24px;
      border-top: 1px solid var(--border);
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-family: var(--font-label);
      font-size: 14px;
      color: var(--cream);
      padding: 14px 10px;
      border-bottom: 1px solid var(--border-light);
      letter-spacing: 0.05em;
    }
    .mobile-nav a:last-child { border-bottom: none; }
    .mobile-nav .btn-primary { margin-top: 12px; justify-content: center; }

    /* ══════════════════════════════════════════════
       HERO SECTION
    ══════════════════════════════════════════════ */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 120px 0 80px;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('img/background-prompt1.webp') center center / cover no-repeat;
      z-index: 0;
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, rgba(10,27,53,0.88) 0%, rgba(10,27,53,0.55) 60%, rgba(10,27,53,0.3) 100%);
    }
    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .hero-label {
      font-family: var(--font-label);
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--purple);
      margin-bottom: 20px;
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(36px, 5.5vw, 60px);
      font-weight: 500;
      line-height: 1.15;
      color: var(--cream);
    }
    .hero-title em {
      font-style: italic;
      color: var(--purple);
    }
    .hero-desc {
      font-size: 18px;
      color: var(--cream-muted);
      margin: 22px 0 36px;
      max-width: 520px;
      line-height: 1.75;
    }
    .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

    .hero-image-wrap {
      position: relative;
      display: flex;
      justify-content: center;
    }
    .hero-image-wrap img {
      width: 100%;
      max-width: 440px;
      border-radius: var(--radius-lg);
      object-fit: cover;
      object-position: top;
      aspect-ratio: 4/5;
      border: 1px solid var(--border);
    }
    .hero-badge {
      position: absolute;
      bottom: -16px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(10,27,53,0.92);
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 10px 22px;
      font-family: var(--font-label);
      font-size: 12px;
      color: var(--purple);
      letter-spacing: 0.05em;
      white-space: nowrap;
      backdrop-filter: blur(8px);
    }
    .hero-badge span { color: var(--cream); font-size: 14px; font-weight: 600; margin-right: 6px; }


    /* ───────────────────────────────────────────────
   Hero — nota "Sesiones online"
   ─────────────────────────────────────────────── */
.hero-online-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-style: italic;
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.9;
}

/* Mobile: más grande y más separado del botón */
@media (max-width: 900px) {
  .hero-online-note {
    font-size: 16px;
    margin-top: 28px;          /* ~10px extra de separación */
  }

  .hero-online-note svg {
    width: 20px;
    height: 20px;
  }
}

.hero-online-note svg {
  width: 18px;
  height: 18px;
  color: #c9a96e;       /* ← acá ajustás el dorado al de tu logo */
  flex-shrink: 0;       /* evita que el ícono se achique en mobile */
}

@media (max-width: 600px) {
  .hero-online-note {
    font-size: 15px;
    margin-top: 14px;
    margin-top: 28px;
  }
  
}

@media (max-width: 480px) {
  .hero-online-note {
    font-size: 15px;
    margin-top: 14px;
    margin-top: 28px;
  }
  
}



/* ═══════════════════════════════════════════════
   HERO — Badge "+200 personas" para mobile
   (texto plano, sin fondo, manteniendo paleta)
   ═══════════════════════════════════════════════ */

/* Oculto por defecto (en desktop el badge original sigue sobre la imagen) */
.hero-badge-mobile {
  display: none;
}

@media (max-width: 900px) {
  .hero-badge-mobile {
    display: block;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 16px;
    line-height: 1.4;
    margin: 14px 0 0;
    opacity: 0.88;
    color: inherit;                        /* hereda el color del texto del hero */
  }

  .hero-badge-mobile-number {
    font-style: normal;                    /* el número en redonda, no cursiva */
    font-weight: 600;
    color: #c9a96e;                        /* dorado del logo */
    letter-spacing: 0.5px;
  }
}

/* Ajuste fino para celulares chicos */
@media (max-width: 480px) {
  .hero-badge-mobile {
    font-size: 15px;
  }
}


/* ═══════════════════════════════════════════════
   FRANJA DIFERENCIALES (debajo del hero)
   ═══════════════════════════════════════════════ */

#diferenciales {
  padding: 56px 0;
  border-top: 1px solid rgba(201, 169, 110, 0.18);
  border-bottom: 1px solid rgba(201, 169, 110, 0.18);
  position: relative;
}

.dif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: stretch;
}

.dif-card {
  position: relative;
  padding: 8px 0;
}

/* Separador vertical sutil entre tarjetas (estilo editorial) */
.dif-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201, 169, 110, 0.22),
    transparent
  );
}

.dif-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 28px;
}

.dif-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #c9a96e;            /* ← dorado del logo (ajustá si es diferente) */
}

.dif-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* La estrella (segunda card) tiene polygon, no path: necesita fill */
.dif-card:nth-child(2) .dif-icon svg polygon {
  fill: currentColor;
  fill-opacity: 0.15;
  stroke: currentColor;
}

.dif-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  margin: 0 0 10px;
  color: #e8e6df;            /* ← ajustá si tu blanco/crema es otro */
}

.dif-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  opacity: 0.85;
  max-width: 300px;
}

/* ═══════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════ */

@media (max-width: 900px) {
  .dif-grid {
    grid-template-columns: 1fr;
  }

  .dif-card:not(:last-child)::after {
    display: none;          /* sacamos el separador vertical */
  }

  .dif-card:not(:last-child) {
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    padding-bottom: 28px;
    margin-bottom: 28px;
  }

  .dif-card-inner {
    padding: 8px 16px;
  }
}

@media (max-width: 600px) {
  #diferenciales {
    padding: 40px 0;
  }

  .dif-title {
    font-size: 19px;
  }

  .dif-desc {
    font-size: 15px;
  }
}


    /* ══════════════════════════════════════════════
       PROBLEMA / IDENTIFICACIÓN
    ══════════════════════════════════════════════ */
    #problema {
      padding: 100px 0;
      position: relative;
    }
    .problema-kicker-wrap { text-align: center; margin-bottom: 48px; }
    .problema-kicker-wrap .section-title { max-width: 700px; margin: 0 auto; text-align: center; }
    .problema-kicker-wrap .section-title em { display: block; }
    .problema-intro {
      font-family: var(--font-body);
      font-size: 18px;
      color: var(--cream-muted);
      max-width: 620px;
      margin: 18px auto 0;
      text-align: center;
      line-height: 1.75;
    }
    .problema-quote {
      max-width: 680px;
      margin: 32px auto 0;
      border-left: 3px solid var(--purple);
      padding: 16px 24px;
      border-radius: 0;
      background: rgba(190,149,196,0.08);
    }
    .problema-quote p {
      font-family: var(--font-body);
      font-style: italic;
      font-size: 18px;
      color: var(--cream);
      line-height: 1.75;
    }
    .pain-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 56px;
    }
    .pain-card {
      position: relative;
      background: url('img/fondo\ estrellas.jpg') center center / cover;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 26px;
      overflow: hidden;
      transition: transform var(--transition), border-color var(--transition);
    }
    .pain-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(10,27,53,0.78);
      transition: background var(--transition);
    }
    .pain-card:hover { transform: translateY(-4px); border-color: var(--purple); }
    .pain-card:hover::before { background: rgba(10,27,53,0.68); }
    .pain-card-inner { position: relative; z-index: 1; }
    .pain-icon {
      width: 46px;
      height: 46px;
      border-radius: 10px;
      background: rgba(181,113,74,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }
    .pain-icon svg { width: 22px; height: 22px; stroke: var(--copper); fill: none; stroke-width: 1.5; }
    .pain-title {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 500;
      color: var(--cream);
      margin-bottom: 10px;
    }
    .pain-desc { font-size: 16px; color: var(--cream-muted); line-height: 1.65; }

    .problema-bridge {
      max-width: 700px;
      margin: 52px auto 0;
      display: flex;
      gap: 20px;
      align-items: flex-start;
      background: rgba(190,149,196,0.07);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px 28px;
    }
    .bridge-icon-wrap {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(190,149,196,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .bridge-icon-wrap svg { width: 18px; height: 18px; stroke: var(--purple); fill: none; stroke-width: 1.5; }
    .problema-bridge p { font-size: 17px; color: var(--cream-muted); line-height: 1.7; }
    .problema-bridge p strong { color: var(--cream); font-weight: 500; }

    /* ══════════════════════════════════════════════
       SOBRE MÍ
    ══════════════════════════════════════════════ */
    #sobre-mi {
      padding: 100px 0;
      background-color: #4c6c96;
    }
    .sobre-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }
    .sobre-image-wrap { position: relative; }
    .sobre-image-wrap img {
      max-width: 90%;
      border-radius: var(--radius-lg);
      object-fit: cover;
      object-position: top center;
      aspect-ratio: 3/4;
      border: 1px solid var(--border);
    }
    .sobre-image-deco {
      position: absolute;
      bottom: -20px;
      right: -20px;
      width: 140px;
      height: 140px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: rgba(10,27,53,0.9);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 16px;
    }
    .sobre-image-deco span:first-child {
      font-family: var(--font-display);
      font-size: 40px;
      font-weight: 600;
      color: var(--purple);
      line-height: 1;
    }
    .sobre-image-deco span:last-child {
      font-family: var(--font-label);
      font-size: 10px;
      letter-spacing: 0.1em;
      color: var(--cream-muted);
      text-align: center;
      margin-top: 4px;
    }
    .sobre-content .section-title { margin-bottom: 24px; }
    .sobre-content p { font-size: 17px; color: var(--cream-muted); line-height: 1.8; margin-bottom: 16px; }
    .sobre-content p strong { color: var(--cream); font-weight: 500; }
    .sobre-credentials {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 28px 0 32px;
    }
    .cred-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-label);
      font-size: 13px;
      color: var(--cream-muted);
      letter-spacing: 0.03em;
    }
    .cred-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--purple);
      flex-shrink: 0;
    }

    /* ══════════════════════════════════════════════
       SERVICIOS
    ══════════════════════════════════════════════ */
    #servicios { padding: 100px 0; }
    .servicios-header { text-align: center; margin-bottom: 48px; }
    .servicios-header .section-sub { margin: 16px auto 0; text-align: center; }

    /* Tabs */
    .tab-nav {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-bottom: 48px;
      flex-wrap: wrap;
    }
    .tab-btn {
      font-family: var(--font-label);
      font-size: 12px;
      letter-spacing: 0.08em;
      padding: 10px 28px;
      border-radius: 50px;
      border: 1px solid var(--border);
      color: var(--cream-muted);
      transition: all var(--transition);
    }
    .tab-btn.active, .tab-btn:hover {
      background: var(--purple);
      color: var(--navy);
      border-color: var(--purple);
    }

    .tab-pane { display: none; }
    .tab-pane.active { display: block; }

    /* Service cards grid */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .services-grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      max-width: 700px;
      margin: 0 auto;
    }
    .service-card {
      background: var(--navy-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 30px 24px;
      transition: transform var(--transition), border-color var(--transition);
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .service-card:hover { transform: translateY(-4px); border-color: var(--purple); }
    .service-icon {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      background: rgba(181,113,74,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }
    .service-icon svg { width: 24px; height: 24px; stroke: var(--copper); fill: none; stroke-width: 1.5; }
    .service-name {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 500;
      color: var(--cream);
      margin-bottom: 12px;
      line-height: 1.25;
    }
    .service-name em { font-style: italic; color: var(--purple); }
    .service-benefit {
      font-size: 15px;
      color: var(--cream-muted);
      line-height: 1.65;
      margin-bottom: 20px;
      flex: 1;
    }
    .service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 22px;
    }
    .service-tag {
      font-family: var(--font-label);
      font-size: 10px;
      letter-spacing: 0.06em;
      padding: 4px 10px;
      border-radius: 20px;
      border: 1px solid rgba(190,149,196,0.3);
      color: var(--purple);
    }
    .service-card-footer { margin-top: auto; }

    /* Service Popup / Modal */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(5,14,30,0.88);
      z-index: 1000;
      align-items: center;
      justify-content: center;
      padding: 24px;
      backdrop-filter: blur(6px);
    }
    .modal-overlay.open { display: flex; }
    .modal-box {
      background: var(--navy-light);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      max-width: 680px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      padding: 0;
      animation: modalIn 0.35s ease;
    }
    @keyframes modalIn {
      from { opacity:0; transform: translateY(24px) scale(0.97); }
      to   { opacity:1; transform: translateY(0) scale(1); }
    }
    .modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 28px 32px 24px;
      border-bottom: 1px solid var(--border);
    }
    .modal-header h3 {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 500;
      color: var(--cream);
    }
    .modal-header h3 em { color: var(--purple); }
    .modal-close {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--cream-muted);
      font-size: 20px;
      transition: all var(--transition);
      flex-shrink: 0;
    }
    .modal-close:hover { background: rgba(190,149,196,0.15); color: var(--cream); }
    .modal-body { padding: 28px 32px 32px; }
    .modal-body p { font-size: 17px; color: var(--cream-muted); line-height: 1.8; margin-bottom: 16px; }
    .modal-body p strong { color: var(--cream); font-weight: 500; }
    .modal-includes {
      background: rgba(190,149,196,0.06);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px 24px;
      margin: 20px 0 24px;
    }
    .modal-includes h4 {
      font-family: var(--font-label);
      font-size: 11px;
      letter-spacing: 0.12em;
      color: var(--purple);
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .modal-includes li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 16px;
      color: var(--cream-muted);
      padding: 6px 0;
      border-bottom: 1px solid var(--border-light);
      line-height: 1.5;
    }
    .modal-includes li:last-child { border-bottom: none; }
    .modal-includes li::before {
      content: '✦';
      color: var(--copper);
      font-size: 10px;
      margin-top: 5px;
      flex-shrink: 0;
    }
    .modal-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
    .modal-sub-services { display: flex; flex-direction: column; gap: 14px; margin: 20px 0 24px; }
    .modal-sub {
      background: rgba(10,27,53,0.6);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 16px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .modal-sub-info h5 {
      font-family: var(--font-display);
      font-size: 19px;
      font-weight: 500;
      color: var(--cream);
      margin-bottom: 4px;
    }
    .modal-sub-info p { font-size: 14px; color: var(--cream-muted); margin: 0; }

    /* ══════════════════════════════════════════════
       PASO A PASO
    ══════════════════════════════════════════════ */
    #paso-a-paso {
      padding: 100px 0;
      background: var(--navy-light);
    }
    .paso-header { text-align: center; margin-bottom: 64px; }
    .paso-header .section-sub { margin: 16px auto 0; text-align: center; }

    .steps-timeline {
      display: flex;
      align-items: flex-start;
      gap: 0;
      position: relative;
      margin-bottom: 60px;
    }
    .step-item {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
    }
    .step-item:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 20px;
      left: 50%;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, var(--purple) 0%, rgba(190,149,196,0.2) 100%);
    }
    .step-num-circle {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--navy);
      border: 2px solid var(--purple);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-label);
      font-size: 14px;
      color: var(--purple);
      position: relative;
      z-index: 1;
      margin-bottom: 16px;
      flex-shrink: 0;
    }
    .step-icon-wrap {
      width: 48px;
      height: 48px;
      margin: 0 auto 12px;
    }
    .step-icon-wrap svg { width: 100%; height: 100%; stroke: var(--purple); fill: none; stroke-width: 1.3; }
    .step-label {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 500;
      color: var(--cream);
      margin-bottom: 6px;
    }
    .step-desc-short { font-size: 13px; color: var(--cream-muted); line-height: 1.5; padding: 0 8px; }

    .steps-detail { display: flex; flex-direction: column; gap: 16px; }
    .step-detail-card {
      background: var(--navy-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px 28px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 20px;
      align-items: start;
      transition: border-color var(--transition);
    }
    .step-detail-card:hover { border-color: rgba(190,149,196,0.4); }
    .step-detail-num {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(190,149,196,0.1);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-label);
      font-size: 13px;
      color: var(--purple);
      flex-shrink: 0;
    }
    .step-detail-content h4 {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 500;
      color: var(--cream);
      margin-bottom: 6px;
    }
    .step-detail-meta {
      font-family: var(--font-label);
      font-size: 11px;
      letter-spacing: 0.08em;
      color: var(--purple);
      margin-bottom: 10px;
    }
    .step-detail-content p { font-size: 16px; color: var(--cream-muted); line-height: 1.7; margin-bottom: 12px; }
    .step-tip {
      background: rgba(190,149,196,0.08);
      border-radius: 8px;
      padding: 10px 14px;
      font-size: 14px;
      color: var(--purple);
      display: flex;
      gap: 8px;
    }

    .paso-cta { text-align: center; margin-top: 52px; }
    .paso-cta p { font-size: 17px; color: var(--cream-muted); margin-bottom: 20px; }

    /* ══════════════════════════════════════════════
       TESTIMONIALES
    ══════════════════════════════════════════════ */
    #testimoniales { padding: 100px 0; }
    .testimoniales-header { text-align: center; margin-bottom: 56px; }
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .testi-card {
      background: var(--navy-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: border-color var(--transition), transform var(--transition);
    }
    .testi-card:hover { border-color: var(--purple); transform: translateY(-3px); }
    .testi-stars {
      display: flex;
      gap: 4px;
      color: var(--copper);
      font-size: 13px;
    }
    .testi-quote {
      font-family: var(--font-body);
      font-style: italic;
      font-size: 17px;
      color: var(--cream-muted);
      line-height: 1.75;
      flex: 1;
    }
    .testi-author {
      border-top: 1px solid var(--border-light);
      padding-top: 14px;
    }
    .testi-author strong {
      display: block;
      font-family: var(--font-label);
      font-size: 13px;
      color: var(--cream);
      letter-spacing: 0.03em;
      margin-bottom: 2px;
    }
    .testi-author span { font-size: 13px; color: var(--purple); }

    #testimoniales {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      rgba(10, 27, 53, 0.75),
      rgba(10, 27, 53, 0.75)
    ),
    url('img/fondo-testimonial.webp') center center / cover no-repeat;
}

    /* ══════════════════════════════════════════════
       LIBROS
    ══════════════════════════════════════════════ */
    /* ══════════════════════════════════════════════
   LIBROS — css/libros.css
   Pegar en styles.css reemplazando el bloque #libros existente
   Cambio: .libro-cover ahora muestra la imagen real del libro
   en lugar del gradiente decorativo anterior.
══════════════════════════════════════════════ */

#libros {
  padding: 100px 0;
  background: var(--navy-light);
}

.libros-header { text-align: center; margin-bottom: 56px; }

.libros-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.libro-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.libro-card:hover { transform: translateY(-5px); border-color: var(--purple); }

/* ── CAMBIO PRINCIPAL ──────────────────────────
   Antes: gradiente decorativo con símbolos.
   Ahora: contenedor de imagen real del libro.
──────────────────────────────────────────── */
.libro-cover {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  display: block;
}

.libro-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.libro-card:hover .libro-cover img {
  transform: scale(1.04);
}
/* ─────────────────────────────────────────── */

.libro-info { padding: 22px 24px; }

.libro-desc {
  font-size: 15px;
  color: var(--cream-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.libro-links { display: flex; flex-direction: column; gap: 10px; }

.libro-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--cream-muted);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 18px;
  transition: all var(--transition);
}
.libro-link svg {
  width: 15px;
  height: 15px;
  stroke: var(--purple);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
.libro-link:hover {
  border-color: var(--purple);
  color: var(--cream);
  background: rgba(190,149,196,0.08);
}

.libro-title-text{
  font-family: 'Playfair Display';
  text-align: center;
  margin-bottom: 10px;
  font-style: italic;

}

    /* ══════════════════════════════════════════════
       GUÍA ASTRAL GRATIS
    ══════════════════════════════════════════════ */
    #guia-astral {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    #guia-astral::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(190,149,196,0.08) 0%, transparent 70%);
    }
    .guia-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .guia-content .kicker { margin-bottom: 18px; }
    .guia-content .section-title { margin-bottom: 20px; }
    .guia-content p { font-size: 17px; color: var(--cream-muted); line-height: 1.8; margin-bottom: 16px; }
    .guia-includes {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin: 24px 0 16px;
    }
    .guia-include-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 16px;
      color: var(--cream-muted);
      line-height: 1.5;
    }
    .guia-check {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: rgba(190,149,196,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
      font-size: 10px;
      color: var(--purple);
    }

    /* Form */
    .guia-form-wrap {
      background: var(--navy-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 40px 36px;
    }
    .guia-form-wrap .kicker { margin-bottom: 6px; }
    .guia-form-title {
      font-family: var(--font-display);
      font-size: 26px;
      font-weight: 500;
      color: var(--cream);
      margin-bottom: 28px;
      line-height: 1.3;
    }
    .guia-form-title em { color: var(--purple); font-style: italic; }
    .form-group { margin-bottom: 18px; }
    .form-group label {
      display: block;
      font-family: var(--font-label);
      font-size: 11px;
      letter-spacing: 0.1em;
      color: var(--purple);
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .form-group input,
    .form-group select {
      width: 100%;
      background: rgba(247,240,230,0.05);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 13px 16px;
      font-family: var(--font-body);
      font-size: 16px;
      color: var(--cream);
      outline: none;
      transition: border-color var(--transition);
      -webkit-appearance: none;
      appearance: none;
    }
    .form-group input::placeholder { color: rgba(247,240,230,0.35); }
    .form-group input:focus,
    .form-group select:focus { border-color: var(--purple); }
    .form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23BE95C4' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
    .form-group select option { background: var(--navy-card); color: var(--cream); }
    .form-submit { width: 100%; margin-top: 8px; justify-content: center; }
    .form-privacy {
      text-align: center;
      font-family: var(--font-label);
      font-size: 11px;
      color: rgba(247,240,230,0.35);
      margin-top: 12px;
      letter-spacing: 0.03em;
    }
    .form-success {
      display: none;
      text-align: center;
      padding: 20px 0;
    }
    .form-success p {
      font-family: var(--font-display);
      font-size: 22px;
      font-style: italic;
      color: var(--purple);
    }
    .form-success span { display: block; font-size: 15px; color: var(--cream-muted); margin-top: 8px; }

    /* ══════════════════════════════════════════════
       FAQ
    ══════════════════════════════════════════════ */
    #faq {
      padding: 100px 0;
      background: var(--navy-light);
    }
    .faq-header { text-align: center; margin-bottom: 52px; }
    .faq-list {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-item {
      background: var(--navy-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: border-color var(--transition);
    }
    .faq-item.open { border-color: rgba(190,149,196,0.4); }
    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 26px;
      cursor: pointer;
      gap: 16px;
    }
    .faq-question h4 {
      font-family: var(--font-display);
      font-size: 19px;
      font-weight: 500;
      color: var(--cream);
      line-height: 1.3;
    }
    .faq-chevron {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform var(--transition), background var(--transition);
    }
    .faq-chevron svg { width: 14px; height: 14px; stroke: var(--purple); fill: none; stroke-width: 2; }
    .faq-item.open .faq-chevron { transform: rotate(180deg); background: rgba(190,149,196,0.15); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }
    .faq-item.open .faq-answer { max-height: 400px; }
    .faq-answer p {
      padding: 0 26px 22px;
      font-size: 17px;
      color: var(--cream-muted);
      line-height: 1.75;
      border-top: 1px solid var(--border-light);
      padding-top: 16px;
    }


    

    /* ══════════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════════ */
    footer {
      background: #060f1f;
      border-top: 1px solid var(--border);
      padding: 60px 0 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-brand img { height: 52px; margin-bottom: 18px; }
    .footer-brand p { font-size: 15px; color: var(--cream-muted); line-height: 1.7; max-width: 280px; margin-bottom: 22px; }
    .footer-social { display: flex; gap: 12px; }
    .footer-social a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all var(--transition);
    }
    .footer-social a:hover { border-color: var(--purple); background: rgba(190,149,196,0.1); }
    .footer-social svg { width: 17px; height: 17px; stroke: var(--cream-muted); fill: none; stroke-width: 1.5; }
    .footer-social a:hover svg { stroke: var(--purple); }

    .footer-col h5 {
      font-family: var(--font-label);
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--purple);
      margin-bottom: 18px;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul a {
      font-size: 15px;
      color: var(--cream-muted);
      transition: color var(--transition);
    }
    .footer-col ul a:hover { color: var(--cream); }

    .footer-bottom {
      border-top: 1px solid var(--border-light);
      padding-top: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p {
      font-family: var(--font-label);
      font-size: 12px;
      color: rgba(247,240,230,0.35);
      letter-spacing: 0.04em;
    }
    .footer-bottom a { color: var(--purple); }

    /* ══════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
      .hero-image-wrap { display: none; }
      .hero-ctas { justify-content: center; }
      .hero-desc { max-width: 100%; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .sobre-inner { grid-template-columns: 1fr; gap: 40px; }
      .sobre-image-wrap { max-width: 400px; margin: 0 auto; }
      .guia-inner { grid-template-columns: 1fr; gap: 48px; }
      .pain-grid { grid-template-columns: repeat(2, 1fr); }
      .testi-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      .section-pad { padding: 72px 0; }
      #hero { padding: 100px 0 64px; }
      nav { display: none; }
      .header-cta { display: none; }
      .hamburger { display: flex; }
      .services-grid { grid-template-columns: 1fr; }
      .services-grid-2 { grid-template-columns: 1fr; }
      .pain-grid { grid-template-columns: 1fr; }
      .steps-timeline { flex-direction: column; gap: 12px; }
      .step-item:not(:last-child)::after { display: none; }
      .testi-grid { grid-template-columns: 1fr; }
      .libros-grid { grid-template-columns: 1fr; max-width: 380px; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .modal-header h3 { font-size: 22px; }
      .modal-body, .modal-header { padding: 20px; }
      .modal-sub { flex-direction: column; align-items: flex-start; }
      .guia-form-wrap { padding: 28px 22px; }
    }

    @media (max-width: 480px) {
      .hero-ctas { flex-direction: column; }
      .btn-primary, .btn-outline { justify-content: center; text-align: center; }
      .problema-bridge { flex-direction: column; }
    }

/* ═══════════════════════════════════════════════
   HERO — Mobile: mostrar foto de Andrea
   ═══════════════════════════════════════════════ */

@media (max-width: 900px) {

  /* Convertimos el contenedor a columna y permitimos reordenar */
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Mostramos la foto (estaba oculta) y la mandamos al principio */
  .hero-image-wrap {
    display: block !important;
    order: -1;                              /* aparece antes del H1 */
    margin: 8px auto 32px;
    max-width: 200px;
    width: 100%;
    position: relative;
  }

  .hero-image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;                    /* fuerza el cuadrado */
    object-fit: cover;                      /* recorta sin deformar */
    object-position: center 20%;            /* centra la cara, no el pecho */
    border-radius: 50%;                     /* círculo perfecto */
    border: 2px solid rgba(201, 169, 110, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  }

  /* El badge "+200 personas" lo ocultamos en mobile
     (queda apretado sobre una foto chica) */
  .hero-image-wrap .hero-badge {
    display: none;
  }

  /* El contenido va después de la imagen */
  .hero-content {
    order: 1;
    width: 100%;
    text-align: center;                     /* opcional, centrá si querés */
  }
}

/* Ajuste fino para celulares chicos */
@media (max-width: 480px) {

  .hero-image-wrap {
    max-width: 170px;
    margin: 4px auto 24px;
  }
}


    /* ══════════════════════════════════════════════
   1. MÁRGENES LATERALES — tablet y móvil
══════════════════════════════════════════════ */

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* ── Móvil grande (≤ 768px) ── */
@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Secciones con fondo propio: el margen visual
     se refuerza con padding horizontal extra */
  #sobre-mi      .container,
  #servicios     .container,
  #paso-a-paso   .container,
  #testimoniales .container,
  #libros        .container,
  #guia-astral   .container,
  #faq           .container,
  #newsletter    .container,
  #problema      .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Cards de servicios: evitar que lleguen al borde */
  .services-grid,
  .services-grid-2 {
    padding: 0 2px;
  }

  /* Cards de testimonios */
  .testi-grid {
    padding: 0 2px;
  }

  /* Libros: columna única centrada con margen interno */
  .libros-grid {
    padding: 0 4px;
  }

  /* FAQ: el acordeón respira mejor */
  .faq-list {
    padding: 0 2px;
  }

  /* Formulario de Guía Astral */
  .guia-form-wrap {
    margin: 0 2px;
  }

  /* Formulario Newsletter */
  .newsletter-form-wrap {
    margin: 0 2px;
  }

  /* Bridge de Problema/Identificación */
  .problema-bridge {
    margin-left: 2px;
    margin-right: 2px;
  }

  /* Cita destacada en Problema */
  .problema-quote {
    margin-left: 0;
    margin-right: 0;
  }
}

/* ── Móvil pequeño (≤ 480px) ── */
@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  #sobre-mi      .container,
  #servicios     .container,
  #paso-a-paso   .container,
  #testimoniales .container,
  #libros        .container,
  #guia-astral   .container,
  #faq           .container,
  #newsletter    .container,
  #problema      .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Tarjetas de dolor: padding interno reducido */
  .pain-card {
    padding: 24px 20px;
  }

  /* Cards de servicios */
  .service-card {
    padding: 24px 18px;
  }

  /* Testimonios */
  .testi-card {
    padding: 22px 18px;
  }

  /* Modales */
  .modal-box {
    margin: 0 8px;
  }
  .modal-header,
  .modal-body {
    padding: 18px 18px;
  }
}


/* ══════════════════════════════════════════════
   2. PASO A PASO — fix layout mobile/tablet
   Problema: los números y textos aparecen
   centrados y desalineados verticalmente.
   Solución: layout de dos columnas en mobile
   (número a la izquierda | texto a la derecha)
   con línea vertical conectora.
══════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Contenedor: columna vertical, ocupa todo el ancho */
  .steps-timeline {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    margin-bottom: 40px;
  }

  /* Cada step: grid de 2 columnas
     Col 1 (50px): número circular
     Col 2 (resto): título + descripción */
  .step-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 2px;
    text-align: left;       /* anula el text-align: center del desktop */
    align-items: start;
    padding-bottom: 32px;
    position: relative;
  }

  /* Línea vertical conectora entre pasos
     Eje X: centro del círculo (50px / 2 = 25px - 1px = 24px) */
  .step-item:not(:last-child)::after {
    display: block;         /* anula el display:none del responsive anterior */
    content: '';
    position: absolute;
    left: 24px;             /* centro del círculo de 42px + padding left */
    top: 44px;              /* justo debajo del círculo */
    width: 2px;
    height: calc(100% - 44px);
    background: linear-gradient(
      180deg,
      var(--purple) 0%,
      rgba(190,149,196,0.15) 100%
    );
    border-radius: 2px;
  }

  /* Círculo numerado: ocupa ambas filas (col 1) */
  .step-num-circle {
    grid-column: 1;
    grid-row: 1 / 3;         /* abarca título y descripción */
    margin-bottom: 0;
    align-self: start;
    margin-top: 2px;
    flex-shrink: 0;
  }

  /* Título del paso: col 2, fila 1 */
  .step-label {
    grid-column: 2;
    grid-row: 1;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    margin-bottom: 0;
    line-height: 1.3;
    padding-top: 4px;       /* alinea visualmente con el centro del círculo */
  }

  /* Descripción corta: col 2, fila 2 */
  .step-desc-short {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
    padding: 0;
    margin-top: 4px;
    font-size: 13px;
    color: var(--cream-muted);
  }
}

/* ── Tablet: el timeline puede ser horizontal parcial ── */
/* En tablet (768-1024px) usamos 3+2 en lugar de 5 en fila */
@media (min-width: 769px) and (max-width: 1024px) {

  .steps-timeline {
    flex-wrap: wrap;
    gap: 0;
  }

  /* 3 pasos en la primera fila */
  .step-item {
    flex: 0 0 calc(100% / 3);
  }

  /* Ocultar la línea horizontal del 3er item
     (último de la primera fila de 3) */
  .step-item:nth-child(3)::after,
  .step-item:last-child::after {
    display: none;
  }

  /* Mantener text-align centrado en tablet */
  .step-item {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .step-num-circle {
    margin-bottom: 14px;
  }
}

/* ── Paso a paso — detail cards en mobile ── */
@media (max-width: 768px) {

  .step-detail-card {
    grid-template-columns: 38px 1fr;
    gap: 14px;
    padding: 20px 16px;
  }

  .step-detail-content h4 {
    font-size: 18px;
  }

  .step-detail-content p {
    font-size: 15px;
  }

  .step-tip {
    font-size: 13px;
    padding: 9px 12px;
  }
}


/* ══════════════════════════════════════════════
   3. CORRECCIONES ADICIONALES mobile
   (observadas en las capturas compartidas)
══════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Hero: el badge "+500" no debe salirse */
  .hero-badge {
    font-size: 11px;
    padding: 8px 16px;
    white-space: nowrap;
  }

  /* Sobre Mí: deco card no se sale del borde */
  .sobre-image-deco {
    right: 0;
    bottom: -14px;
    width: 120px;
    height: 120px;
  }
  .sobre-image-deco span:first-child {
    font-size: 32px;
  }

  /* Servicios: el enlace de vouchers centrado */
  #servicios p[style*="text-align:center"] {
    padding: 0 4px;
  }

  /* Guía Astral: el grid no colapsa con overflow */
  .guia-inner {
    gap: 36px;
  }

  /* Newsletter: spacing interno */
  .newsletter-inner {
    gap: 36px;
  }
  .newsletter-topics {
    gap: 10px;
  }

  /* Footer: evitar overflow en columnas */
  .footer-brand p {
    max-width: 100%;
  }

  /* WhatsApp float: no pisa el contenido inferior */
  .whatsapp-float {
    bottom: 24px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  /* Sección título principal más pequeña en pantallas chicas */
  .section-title {
    font-size: clamp(26px, 7vw, 36px);
  }

  /* Hero título */
  .hero-title {
    font-size: clamp(28px, 8vw, 40px);
  }

  /* Sobre Mí: credenciales con letra más pequeña */
  .cred-item {
    font-size: 12px;
  }

  /* Pain cards en mobile pequeño */
  .pain-grid {
    gap: 14px;
  }

  /* Tabs de servicios: ocupan todo el ancho en mobile chico */
  .tab-nav {
    gap: 6px;
  }
  .tab-btn {
    padding: 9px 18px;
    font-size: 11px;
  }

  /* Libros: padding interno reducido */
  .libro-info {
    padding: 18px 16px;
  }
  .libro-desc {
    font-size: 14px;
  }

  /* FAQ: pregunta más pequeña */
  .faq-question h4 {
    font-size: 16px;
  }
  .faq-answer p {
    font-size: 15px;
  }

  /* Formularios */
  .form-group input,
  .form-group select {
    font-size: 15px;
    padding: 11px 14px;
  }
}

/* ══════════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════════ */

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-52px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(52px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ══════════════════════════════════════════════
   COLUMNA IZQUIERDA — fade in desde la izquierda
   Elementos escalonados: label → título → desc → botones
══════════════════════════════════════════════ */

/* Label "Astrología · Tarot · Sanación Energética" */
.hero-content .hero-label {
  opacity: 0;
  animation: fadeInLeft 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s forwards;
}

/* Título principal H1 */
.hero-content .hero-title {
  opacity: 0;
  animation: fadeInLeft 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.45s forwards;
}

/* Párrafo descriptivo */
.hero-content .hero-desc {
  opacity: 0;
  animation: fadeInLeft 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.7s forwards;
}

/* Botones CTA */
.hero-content .hero-ctas {
  opacity: 0;
  animation: fadeInLeft 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.9s forwards;
}


/* ══════════════════════════════════════════════
   COLUMNA DERECHA — fade in desde la derecha
══════════════════════════════════════════════ */

/* Contenedor de la foto */
.hero-image-wrap {
  opacity: 0;
  animation: fadeInRight 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.5s forwards;
}

/* Badge "+500 personas" — sube desde abajo con retardo extra */
.hero-badge {
  opacity: 0;
  animation: fadeInUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 1.1s forwards;
}


/* ══════════════════════════════════════════════
   ACCESIBILIDAD
   Respeta la preferencia del sistema
   "reducir movimiento" (prefers-reduced-motion)
══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .hero-content .hero-label,
  .hero-content .hero-title,
  .hero-content .hero-desc,
  .hero-content .hero-ctas,
  .hero-image-wrap,
  .hero-badge {
    opacity: 1;
    animation: none;
  }
}

/* ══════════════════════════════════════════════
   NEWSLETTER SIMPLE — newsletter-simple.css
   Pegar al final de style.css
   (o vincular como archivo separado en el <head>)
══════════════════════════════════════════════ */

/* ── Sección ── */
#newsletter {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}

/* Fondo: imagen de estrellas con overlay navy */
.newsletter-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      rgba(10, 27, 53, 0.82),
      rgba(10, 27, 53, 0.82)
    ),
    url('img/fondo\ estrellas.jpg') center center / cover no-repeat;
  z-index: 0;
}

/* ── Contenedor central ── */
.newsletter-wrap {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-wrap .kicker {
  margin-bottom: 14px;
}

/* ── Título ── */
.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
}
.newsletter-title em {
  font-style: italic;
  color: var(--purple);
}

/* ── Subtítulo ── */
.newsletter-sub {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--cream-muted);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 40px;
}

/* ── Formulario ── */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.newsletter-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

/* Labels */
.newsletter-field label {
  display: block;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 8px;
}
.newsletter-field label span {
  color: var(--copper);
  font-size: 9px;
}

/* Inputs */
.newsletter-field input {
  width: 100%;
  background: rgba(247, 240, 230, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 18px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--cream);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.newsletter-field input::placeholder {
  color: rgba(247, 240, 230, 0.3);
}
.newsletter-field input:focus {
  border-color: var(--purple);
  background: rgba(247, 240, 230, 0.09);
}

/* ── Fila email + botón ── */
.newsletter-email-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.newsletter-email-row input {
  flex: 1;
}

/* ── Botón ── */
.newsletter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--purple);
  color: var(--navy);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 13px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.newsletter-btn:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
}

/* ── Privacidad ── */
.newsletter-privacy {
  font-family: var(--font-label);
  font-size: 11px;
  color: rgba(247, 240, 230, 0.35);
  letter-spacing: 0.04em;
  text-align: center;
  margin-top: 4px;
}

/* ── Mensaje éxito ── */
.newsletter-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.newsletter-success p {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: var(--purple);
  margin-bottom: 8px;
}
.newsletter-success span {
  font-size: 16px;
  color: var(--cream-muted);
  line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  #newsletter { padding: 72px 0; }

  .newsletter-email-row {
    flex-direction: column;
    gap: 12px;
  }
  .newsletter-btn {
    width: 100%;
    justify-content: center;
    border-radius: 50px;
  }
  .newsletter-sub {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .newsletter-title {
    font-size: clamp(26px, 7vw, 34px);
  }
}

.precio {
  font-style: italic;
  font-size: 15px;
  color: #BE95C4 !important;
  

}

/* ══════════════════════════════════════════════
   SCROLL TO TOP — Flecha de navegación
══════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 100px;          /* encima del botón de WhatsApp */
  right: 40px;
  z-index: 998;

  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(190,149,196,0.5);
  background: rgba(10,27,53,0.92);
  backdrop-filter: blur(8px);
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  /* Oculto por defecto */
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity     0.35s ease,
    visibility  0.35s ease,
    transform   0.35s ease,
    background  0.25s ease,
    border-color 0.25s ease;
}

/* Visible cuando el JS agrega la clase .visible */
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover */
.scroll-top:hover {
  background: rgba(190,149,196,0.2);
  border-color: var(--purple);
}

/* Icono SVG */
.scroll-top svg {
  width: 18px;
  height: 18px;
  stroke: var(--purple);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.25s ease;
}
.scroll-top:hover svg {
  stroke: var(--cream);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .scroll-top {
    bottom: 92px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
  .scroll-top svg {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 480px) {
  .scroll-top {
    bottom: 88px;
    right: 30px;
  }
}