/* =========================================================
   Amar sin Miedos — Landing Page
   Paleta: coral, rojo profundo, crema
   ========================================================= */

:root {
  --coral: #E11D48;
  --coral-soft: #F43F5E;
  --rojo: #9F1239;
  --rojo-deep: #6B0F2A;
  --crema: #FFF8F0;
  --crema-warm: #FBEFE0;
  --crema-shadow: #F3E5D0;
  --tinta: #2A1418;
  --tinta-soft: #5C3A41;
  --tinta-muted: #8A6D72;
  --oro: #C9A961;

  --ff-display: 'Playfair Display', 'Times New Roman', serif;
  --ff-accent: 'Fredoka One', 'Fredoka', cursive;
  --ff-body: 'Nunito', system-ui, -apple-system, sans-serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-soft: 0 8px 30px -12px rgba(159, 18, 57, 0.18);
  --shadow-md: 0 18px 40px -20px rgba(159, 18, 57, 0.28);
  --shadow-lg: 0 30px 60px -25px rgba(159, 18, 57, 0.35);

  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--crema);
  color: var(--tinta);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.eyebrow {
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
}

/* =========== Decoración: hojas/corazones SVG inline =========== */
.deco-heart {
  position: absolute;
  pointer-events: none;
  opacity: .08;
  color: var(--coral);
}

/* =========== Botones =========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--coral);
  color: white;
  box-shadow: 0 10px 24px -8px rgba(225, 29, 72, 0.55);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--rojo);
  box-shadow: 0 16px 32px -10px rgba(225, 29, 72, 0.65);
}

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

.btn-cream {
  background: var(--crema);
  color: var(--rojo-deep);
}
.btn-cream:hover { background: white; transform: translateY(-2px); }

.btn-lg { padding: 20px 36px; font-size: 17px; }

.btn .wa-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* =========== Navbar =========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 240, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(159, 18, 57, 0.08);
  transition: box-shadow .2s ease;
}
.navbar.scrolled { box-shadow: 0 8px 24px -16px rgba(159, 18, 57, 0.25); }

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

.logo-avanza {
  display: inline-flex;
  align-items: center;
}
.logo-avanza img {
  height: 108px;
  width: auto;
  display: block;
}

/* =========== Hero =========== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(circle at 12% 20%, rgba(244, 63, 94, 0.10), transparent 40%),
    radial-gradient(circle at 92% 80%, rgba(159, 18, 57, 0.08), transparent 45%),
    linear-gradient(180deg, var(--crema) 0%, var(--crema-warm) 100%);
  overflow: hidden;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.hero-copy { max-width: 880px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  box-shadow: var(--shadow-soft);
  margin-bottom: 28px;
}
.hero-eyebrow svg { color: var(--coral); }

.hero h1 {
  font-size: clamp(56px, 9vw, 120px);
  color: var(--rojo-deep);
  margin-bottom: 28px;
  line-height: 1.05;
  font-weight: 700;
}
.hero h1 em {
  font-style: italic;
  font-weight: 700;
  color: var(--coral);
  display: block;
}

.hero-lead {
  font-size: 19px;
  color: var(--tinta-soft);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero-lead strong { color: var(--rojo-deep); font-weight: 800; }

.date-pills {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.date-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 12px 22px 12px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(159, 18, 57, 0.08);
}
.date-pill .day {
  font-family: var(--ff-accent);
  font-size: 22px;
  background: linear-gradient(135deg, var(--coral), var(--rojo));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.date-pill .pill-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}
.date-pill .dow {
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--rojo-deep);
}
.date-pill .hr {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 12px;
  color: var(--tinta-muted);
  margin-top: 2px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero artwork — logo "Amar sin Miedos" (heart PNG) */
.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  width: min(560px, 80vw);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 6%;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.18), rgba(244, 63, 94, 0.04) 55%, transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
  z-index: 0;
}
.hero-art .heart-png {
  position: relative;
  width: 86%;
  max-width: 480px;
  z-index: 1;
  filter: drop-shadow(0 30px 50px rgba(159, 18, 57, 0.25));
  animation: heartBeat 5s ease-in-out infinite;
}
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.03); }
}
.hero-art .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px dashed rgba(225, 29, 72, 0.22);
  animation: spin 60s linear infinite;
}
.hero-art .ring.inner {
  inset: 10%;
  border-style: dotted;
  border-color: rgba(159, 18, 57, 0.18);
  animation-duration: 40s;
  animation-direction: reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }



.heart-float {
  position: absolute;
  color: white;
  filter: drop-shadow(0 8px 16px rgba(159, 18, 57, 0.4));
}
.heart-1 { top: 8%; right: 6%; width: 38px; animation: float 6s ease-in-out infinite; }
.heart-2 { bottom: 14%; left: 4%; width: 28px; animation: float 7s ease-in-out infinite .8s; }
.heart-3 { top: 50%; right: -2%; width: 22px; animation: float 5s ease-in-out infinite .4s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50%      { transform: translateY(-14px) rotate(6deg); }
}

/* =========== Section base =========== */
section {
  padding: 90px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--rojo-deep);
  margin-top: 14px;
  margin-bottom: 14px;
}
.section-head p {
  color: var(--tinta-soft);
  font-size: 18px;
}

/* =========== Pain points =========== */
.pain {
  background: var(--crema);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pain-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid rgba(159, 18, 57, 0.07);
  border-left: 4px solid var(--coral);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
}
.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--rojo);
}
.pain-card h3 {
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--rojo-deep);
  margin-bottom: 12px;
  line-height: 1.2;
}
.pain-card p {
  color: var(--tinta-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* =========== Power phrase =========== */
.power {
  background: linear-gradient(135deg, var(--rojo-deep) 0%, var(--rojo) 100%);
  color: white;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.power::before, .power::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.25), transparent 70%);
  pointer-events: none;
}
.power::before { width: 500px; height: 500px; top: -200px; left: -120px; }
.power::after  { width: 600px; height: 600px; bottom: -260px; right: -180px; }

.power-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.power-mark {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 120px;
  line-height: 0.6;
  color: rgba(255, 248, 240, 0.18);
  margin-bottom: 0;
}
.power-quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.3;
  color: white;
  text-wrap: balance;
}
.power-quote strong {
  color: #FFD7A8;
  font-weight: 700;
  font-style: italic;
}
.power-attr {
  margin-top: 28px;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* =========== Temas =========== */
.temas {
  background: var(--crema-warm);
  position: relative;
}
.temas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tema-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 26px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid rgba(159, 18, 57, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.tema-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.tema-ic {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.18), rgba(225, 29, 72, 0.08));
  display: grid;
  place-items: center;
  color: var(--coral);
}
.tema-ic svg { width: 24px; height: 24px; }
.tema-card p {
  color: var(--tinta-soft);
  font-size: 15px;
  line-height: 1.55;
}
.tema-card p strong {
  color: var(--rojo);
  font-weight: 800;
}

/* =========== Horarios =========== */
.horarios { background: var(--crema); }
.horarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}
.horario-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  border: 1px solid rgba(159, 18, 57, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.horario-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
}
.horario-card .day-name {
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 18px;
}
.horario-card .day-num {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 88px;
  line-height: 1;
  color: var(--rojo-deep);
  margin-bottom: 2px;
}
.horario-card .month {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--coral);
  margin-bottom: 22px;
}
.horario-card .dashed {
  width: 60%;
  height: 0;
  border-top: 1px dashed rgba(159, 18, 57, 0.3);
  margin: 0 auto 22px;
}
.horario-card .time {
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 22px;
  color: var(--rojo-deep);
}
.horario-card .time .to {
  display: block;
  font-weight: 600;
  font-size: 17px;
  color: var(--tinta-soft);
  margin-top: 2px;
}

.venue {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(159, 18, 57, 0.08);
}
.venue .pin {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--coral), var(--rojo));
  display: grid;
  place-items: center;
  color: white;
}
.venue .label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 4px;
}
.venue .addr {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--rojo-deep);
}
.venue .city {
  font-size: 14px;
  color: var(--tinta-soft);
}

/* =========== Precios =========== */
.precios {
  background: var(--crema-warm);
}
.precios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.precio-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  text-align: center;
  border: 1px solid rgba(159, 18, 57, 0.08);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.precio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.precios-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--tinta-muted);
  background: rgba(255, 255, 255, 0.6);
  display: inline-block;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.precio-card.featured {
  background: linear-gradient(165deg, var(--rojo-deep), var(--rojo));
  color: white;
  border: 2px solid var(--oro);
  box-shadow: var(--shadow-lg), 0 0 0 6px rgba(201, 169, 97, 0.12);
}

.precio-card .ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--oro);
  color: var(--rojo-deep);
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.precio-card .kind {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 24px;
  margin-bottom: 6px;
  color: var(--rojo-deep);
}
.precio-card.featured .kind { color: #FFD7A8; }

.precio-card .who {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--tinta-muted);
  margin-bottom: 28px;
}
.precio-card.featured .who { color: rgba(255, 248, 240, 0.7); }

.precio-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}
.precio-amount .currency {
  font-family: var(--ff-accent);
  font-size: 32px;
  opacity: 0.85;
}
.precio-amount .price {
  font-family: var(--ff-accent);
  font-size: 88px;
  line-height: 1;
}
.precio-card .price-color {
  background: linear-gradient(135deg, var(--coral), var(--rojo));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.precio-card .strike {
  font-family: var(--ff-accent);
  font-size: 22px;
  text-decoration: line-through;
  opacity: 0.5;
  margin-bottom: 14px;
}
.precio-card .currency-tag {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--tinta-muted);
  margin-bottom: 28px;
}
.precio-card.featured .currency-tag { color: rgba(255, 248, 240, 0.7); }
.precio-card .saving {
  display: inline-block;
  background: rgba(225, 29, 72, 0.1);
  color: var(--coral);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.precio-card.featured .saving {
  background: rgba(255, 215, 168, 0.18);
  color: #FFD7A8;
}
.precio-card ul {
  list-style: none;
  text-align: left;
  margin: 24px 0 28px;
}
.precio-card ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
}
.precio-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 800;
}
.precio-card.featured ul li::before { color: #FFD7A8; }

.precio-card .btn { width: 100%; justify-content: center; }

/* =========== Facilitador =========== */
.facilitator {
  background: var(--crema);
}
.facilitator-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.face-photo-wrap {
  position: relative;
}
.face-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: var(--crema-warm);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}
.face-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.face-photo-wrap .badge-card {
  position: absolute;
  bottom: 18px;
  right: -22px;
  background: white;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.face-photo-wrap .badge-card .num {
  font-family: var(--ff-accent);
  font-size: 30px;
  background: linear-gradient(135deg, var(--coral), var(--rojo));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.face-photo-wrap .badge-card .lbl {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tinta-muted);
  line-height: 1.3;
}

.facilitator .eyebrow { margin-bottom: 12px; display: block; }
.facilitator h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--rojo-deep);
  margin-bottom: 8px;
}
.facilitator h3 {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--coral);
  margin-bottom: 18px;
}
.facilitator p {
  color: var(--tinta-soft);
  margin-bottom: 16px;
  font-size: 16px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}
.badge {
  background: white;
  border: 1px solid rgba(159, 18, 57, 0.12);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--rojo-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

.cert-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--coral);
  font-weight: 800;
  font-size: 14px;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
  transition: gap .2s ease;
}
.cert-link:hover { gap: 14px; }

/* =========== CTA Final =========== */
.cta-final {
  background: linear-gradient(135deg, var(--rojo) 0%, var(--rojo-deep) 100%);
  color: white;
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(244, 63, 94, 0.22), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(244, 63, 94, 0.18), transparent 55%);
}
.cta-final-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta-final h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  margin-bottom: 16px;
}
.cta-final h2 em { color: #FFD7A8; font-style: italic; }
.cta-final p {
  font-size: 19px;
  opacity: 0.9;
  margin-bottom: 36px;
}
.cta-final .btn { box-shadow: 0 20px 40px -12px rgba(0,0,0,0.4); }

.cta-spots {
  margin-top: 28px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cta-spots .live {
  width: 8px; height: 8px;
  background: #FFD7A8;
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 4px rgba(255, 215, 168, 0.25);
}

/* =========== Footer =========== */
footer {
  background: #1A0B0E;
  color: rgba(255, 248, 240, 0.7);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
footer .logo-avanza { color: white; }
footer .logo-avanza .sub { color: rgba(255, 248, 240, 0.5); }
footer .footer-logo img {
  height: 120px;
  width: auto;
  filter: none;
  background: rgba(255, 255, 255, 0.96);
  padding: 10px 18px;
  border-radius: 14px;
  box-shadow: 0 8px 24px -10px rgba(0,0,0,0.4);
}
footer h5 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-style: italic;
  color: white;
  font-size: 18px;
  margin-bottom: 16px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; font-size: 14px; }
footer a:hover { color: var(--coral-soft); }
footer .desc { margin-top: 18px; font-size: 14px; max-width: 320px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 248, 240, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 248, 240, 0.5);
}

/* =========== Reveal on scroll =========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =========== Floating WhatsApp =========== */
.fab-wa {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 40;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 32px -10px rgba(37, 211, 102, 0.6);
  transition: transform .2s ease;
  text-decoration: none;
}
.fab-wa:hover { transform: scale(1.08); }
.fab-wa svg { width: 30px; height: 30px; fill: currentColor; }
.fab-wa::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: fabPulse 2s ease-out infinite;
}
@keyframes fabPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* =========== Responsive =========== */
@media (max-width: 960px) {
  section { padding: 70px 0; }
  .hero { padding: 50px 0 70px; }
  .hero-art { width: min(420px, 85vw); }
  .pain-grid, .temas-grid, .horarios-grid { grid-template-columns: 1fr 1fr; }
  .precios-grid { grid-template-columns: 1fr; }
  .facilitator-grid { grid-template-columns: 1fr; gap: 40px; }
  .face-photo-wrap { max-width: 380px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .venue { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .pain-grid, .temas-grid, .horarios-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .navbar .btn { padding: 12px 18px; font-size: 13px; }
  .logo-avanza img { height: 70px; }
}
