@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Nunito:wght@400;600;700;800&display=swap');

/* ── TOKENS ────────────────────────────────────────── */
:root {
  /* paleta Pawnatt (logo oficial: azul + rosa sobre crema) */
  --blue:       #435DA5;
  --pink:       #E891BC;
  --pink-light: #FAE1EC;

  /* roles */
  --forest:       var(--pink);   /* color primario de marca / links */
  --forest-light: var(--blue);
  --forest-muted: var(--pink-light);
  --forest-dark:  var(--blue);
  --clay:         var(--pink);   /* botones primarios */
  --clay-dark:    #D077A0;
  --cream:        #F9F0ED;       /* fondo neutro de página, igual al del logo */
  --cream-dark:   #EFDFD9;
  --dark:         #22254A;
  --mid:          #5B5E7A;
  --light:        #A8ABC4;
  --white:        #FFFFFF;
  --danger:       #D6455F;

  --font-head: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 1px 4px rgba(34,37,74,.08);
  --shadow-md: 0 4px 20px rgba(34,37,74,.10);
  --shadow-lg: 0 10px 40px rgba(34,37,74,.16);

  --trans: .25s ease;
}

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--dark); }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); font-weight: 700; }
p { font-size: 1rem; line-height: 1.75; color: var(--mid); }

/* ── STICKER BADGES ────────────────────────────────── */
.sticker {
  position: absolute;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 18px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark);
  box-shadow: var(--shadow-md);
  transform: rotate(-6deg);
}
.sticker-pink { background: var(--pink); color: var(--white); }
.sticker-blue { background: var(--blue); color: var(--white); }
.sticker-cream { background: var(--white); color: var(--dark); border: 1.5px solid var(--pink); }
.sticker-rot-r { transform: rotate(6deg); }

/* ── LAYOUT ────────────────────────────────────────── */
.container { max-width: 1120px; margin-inline: auto; padding-inline: 24px; }
.section { padding-block: 90px; }
.section-sm { padding-block: 56px; }

/* ── NAV ───────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 100; background: var(--cream); border-bottom: 1px solid var(--cream-dark); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 18px; }
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo-img { height: 34px; width: auto; display: block; }
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: .95rem; font-weight: 600;
  letter-spacing: .01em;
  transition: all var(--trans);
  cursor: pointer;
}
.btn-primary { background: var(--clay); color: var(--white); border: 2px solid var(--clay); }
.btn-primary:hover { background: var(--clay-dark); border-color: var(--clay-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,145,188,.4); }
.btn-outline { background: transparent; color: var(--forest); border: 2px solid var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--white); }
.btn-ghost { background: transparent; color: var(--dark); border: 2px solid transparent; padding: 14px 18px; }
.btn-ghost:hover { color: var(--forest); }
.btn-sm { padding: 10px 20px; font-size: .875rem; }
.btn-lg { padding: 18px 42px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none !important; }

/* ── HERO ──────────────────────────────────────────── */
.hero { padding-block: 90px 60px; background: var(--pink-light); }
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero-badge { display: inline-block; background: var(--white); color: var(--forest-dark); padding: 8px 16px; border-radius: 100px; font-size: .82rem; font-weight: 600; margin-bottom: 20px; }
.hero-title { margin-bottom: 20px; }
.hero-title em { font-style: normal; color: var(--pink); }
.hero-lead { font-size: 1.1rem; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Hero trust cards (badges bajo el CTA) ─────────── */
.hero-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 26px; }
.hero-trust-card {
  background: var(--white); border-radius: var(--radius-md); padding: 16px 10px;
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
  box-shadow: var(--shadow-sm);
}
.hero-trust-icon { font-size: 1.4rem; }
.hero-trust-card .label { font-weight: 700; font-size: .8rem; color: var(--dark); line-height: 1.25; }
@media (max-width: 640px) { .hero-trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Garabatos decorativos (corazón, destello, huella) ─ */
.doodle { position: absolute; color: var(--pink); opacity: .55; pointer-events: none; }
.doodle-heart { width: 26px; height: 26px; }
.doodle-spark { width: 26px; height: 26px; }
.doodle-paw { width: 30px; height: 30px; }
.doodle-hero-left { top: 38%; left: -30px; }
.doodle-hero-right { top: 8%; right: 4%; }
.doodle-section-left { top: -6px; left: 0; }
.doodle-section-right { top: -6px; right: 0; }
.doodle-timeline { top: 12px; right: 12px; }
@media (max-width: 640px) {
  .doodle-hero-left, .doodle-hero-right { display: none; }
}
.hero-visual {
  position: relative;
  background: var(--blue);
  border-radius: var(--radius-lg);
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.3rem;
  text-align: center;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

/* ── CARDS ─────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.card-icon-img { width: 68px; height: auto; margin-bottom: 14px; }
.card-photo {
  width: calc(100% + 56px); max-width: none;
  margin: 18px -28px -32px; margin-top: auto;
  display: block; object-fit: cover;
}
.card-title-accent { position: relative; padding-bottom: 12px; margin-bottom: 4px; }
.card-title-accent::after { content: ''; position: absolute; left: 0; bottom: 0; width: 32px; height: 3px; background: var(--pink); border-radius: 2px; }

/* ── TIMELINE ("cómo funciona") ───────────────────── */
.timeline { max-width: 640px; margin: 40px auto 0; }
.timeline-step { display: flex; gap: 18px; position: relative; padding-bottom: 28px; }
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step:not(:last-child)::before {
  content: ''; position: absolute; left: 22px; top: 46px; bottom: 0;
  border-left: 2px dashed var(--light);
}
.timeline-num {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--white);
  z-index: 1;
}
.timeline-num.n1, .timeline-num.n4 { background: #8B7FD6; }
.timeline-num.n2 { background: var(--pink); }
.timeline-num.n3 { background: var(--blue); }
.timeline-card {
  position: relative;
  background: var(--white); border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-md); padding: 18px 22px; flex: 1;
  display: flex; gap: 14px; align-items: flex-start;
}
.timeline-icon-img { width: 56px; height: auto; flex-shrink: 0; }
.timeline-card h3 { margin-bottom: 4px; }

/* ── "Tu receta incluye" (grid de íconos) ──────────── */
.include-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 32px; max-width: 720px; margin-inline: auto; }
.include-item { text-align: center; }
.include-icon {
  width: 64px; height: 64px; margin: 0 auto 12px; border-radius: 50%;
  background: var(--pink-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
}
.include-icon-img { width: 64px; height: auto; margin: 0 auto 12px; display: block; }
.include-item .label { font-weight: 700; font-size: .9rem; color: var(--dark); }
@media (max-width: 640px) { .include-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── "No existen recetas universales" (comparación de razas) ── */
.breed-section { background: var(--pink-light); }
.breed-layout { display: grid; grid-template-columns: 1fr 260px; gap: 28px; align-items: start; margin-top: 40px; }
.breed-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.breed-card { background: var(--white); border-radius: var(--radius-md); padding: 20px 12px; text-align: center; box-shadow: var(--shadow-sm); }
.breed-photo { width: 100%; max-width: 130px; height: 130px; object-fit: contain; margin: 0 auto 8px; display: block; }
.breed-card .name { font-family: var(--font-head); font-weight: 700; font-size: .92rem; color: var(--dark); }
.breed-card .meta { font-size: .76rem; color: var(--mid); margin-top: 4px; }
.breed-card .amt { margin-top: 10px; font-family: var(--font-head); font-weight: 700; color: var(--blue); font-size: .95rem; }
.breed-side-box { background: var(--white); border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow-sm); }
.breed-side-box ul { margin-bottom: 12px; }
.breed-side-box li { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; color: var(--dark); font-size: .9rem; margin-bottom: 12px; }
@media (max-width: 860px) {
  .breed-layout { grid-template-columns: 1fr; }
  .breed-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── "Hecho con amor" (tagline final) ──────────────── */
.heart-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--pink-light); color: var(--forest-dark);
  padding: 10px 20px; border-radius: 100px; font-weight: 700; font-size: .88rem;
}

/* ── FORMS ─────────────────────────────────────────── */
.auth-wrap { max-width: 420px; margin: 60px auto; padding: 40px 36px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.auth-wrap h1 { font-size: 1.7rem; margin-bottom: 8px; }
.auth-wrap .sub { margin-bottom: 28px; }
.form-wide { max-width: 640px; margin: 48px auto; padding: 40px 36px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: .88rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--cream);
  color: var(--dark);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--forest-light); background: var(--white); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-hint { font-size: .8rem; color: var(--light); margin-top: 4px; }
.field-check { display: flex; align-items: center; gap: 8px; }
.field-check input { width: auto; }

.msg { padding: 12px 16px; border-radius: var(--radius-sm); font-size: .88rem; margin-bottom: 18px; }
.msg-error { background: #FBEAE7; color: var(--danger); }
.msg-ok { background: var(--forest-muted); color: var(--forest-dark); }

.auth-foot { text-align: center; margin-top: 22px; font-size: .9rem; color: var(--mid); }
.auth-foot a { color: var(--forest); font-weight: 600; }

/* ── DASHBOARD ─────────────────────────────────────── */
.topbar { background: var(--white); border-bottom: 1px solid var(--cream-dark); padding: 16px 0; position: sticky; top: 0; z-index: 50; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; }
.topbar-dog { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 1.05rem; color: var(--forest-dark); }
.topbar-dog .nav-logo-img { height: 26px; }

.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 28px; }
.option-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; }
.option-chip {
  padding: 14px 10px; text-align: center;
  border: 1.5px solid var(--cream-dark); border-radius: var(--radius-sm);
  background: var(--white); font-size: .9rem; font-weight: 500;
  cursor: pointer; transition: all var(--trans);
}
.option-chip:hover { border-color: var(--forest-light); }
.option-chip.selected { background: var(--forest); border-color: var(--forest); color: var(--white); }

.result-card { background: var(--blue); color: var(--white); border-radius: var(--radius-lg); padding: 32px; margin-top: 28px; }
.result-card h3 { color: var(--white); }
.result-subtitle { color: rgba(255,255,255,.75); font-size: .95rem; margin-top: 2px; }
.ingredient-list { margin-top: 20px; background: rgba(255,255,255,.08); border-radius: var(--radius-sm); padding: 20px; }
.ingredient-row { display: flex; justify-content: space-between; padding-block: 8px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: .95rem; }
.ingredient-row:last-child { border-bottom: none; }
.ingredient-row .amt { font-weight: 700; }
.disclaimer { margin-top: 20px; font-size: .82rem; color: rgba(255,255,255,.85); }

/* ── Información del perro (tarjeta de receta) ─────── */
.dog-info-list { margin-top: 8px; }
.dog-info-list > div { color: rgba(255,255,255,.85); font-size: .95rem; margin-top: 3px; }
.dog-info-name { font-family: var(--font-head); font-weight: 700; color: var(--white) !important; font-size: 1.1rem; margin-top: 0 !important; }

/* ── Métricas grandes (calorías, kg a preparar) ────── */
.metric-label { color: rgba(255,255,255,.75); font-size: .9rem; margin-top: 4px; }
.metric-big { font-family: var(--font-head); font-size: 2.4rem; margin-block: 4px; }
.metric-caption { color: rgba(255,255,255,.75); font-size: .85rem; }

.grams-stat-row { display: flex; gap: 28px; margin-top: 10px; }
.grams-stat-row > div { display: flex; flex-direction: column; }
.grams-stat-num { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--white); }
.grams-stat-label { font-size: .8rem; color: rgba(255,255,255,.7); }

/* ── Barras de macros ──────────────────────────────── */
.macro-bar-row { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.macro-bar-label { width: 110px; font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.9); flex-shrink: 0; }
.macro-bar-track { flex: 1; height: 10px; background: rgba(255,255,255,.15); border-radius: 100px; overflow: hidden; }
.macro-bar-fill { height: 100%; border-radius: 100px; }
.macro-bar-pct { width: 40px; text-align: right; font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.9); flex-shrink: 0; }

/* ── "¿Por qué elegimos estos ingredientes?" ───────── */
.why-grid { margin-top: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.why-card { display: flex; gap: 10px; background: rgba(255,255,255,.08); border-radius: var(--radius-sm); padding: 14px; }
.why-icon { font-size: 1.4rem; line-height: 1; }
.why-label { font-weight: 700; color: var(--white); font-size: .9rem; }
.why-text { color: rgba(255,255,255,.8); font-size: .85rem; margin-top: 2px; }
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } }

/* ── Preparación / conservación (listas) ───────────── */
.prep-steps { margin-top: 10px; padding-left: 22px; color: rgba(255,255,255,.9); }
.prep-steps li { margin-block: 6px; }
.conservation-list { margin-top: 10px; padding-left: 20px; color: rgba(255,255,255,.9); }
.conservation-list li { margin-block: 6px; }

/* ── Próxima semana ─────────────────────────────────── */
.next-week-card { margin-top: 28px; background: rgba(255,255,255,.12); border-radius: var(--radius-md); padding: 24px; }
.next-week-title { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 1.1rem; }

.paywall-card { max-width: 480px; margin: 80px auto; text-align: center; padding: 48px 36px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.paywall-price { font-family: var(--font-head); font-size: 3rem; color: var(--clay); margin-block: 16px; }

/* ── STEPPER (calculadora diaria) ──────────────────── */
.stepper { display: flex; gap: 8px; margin-bottom: 32px; }
.step-dot {
  flex: 1; text-align: center; padding: 12px 6px;
  border-radius: var(--radius-md); background: var(--cream-dark); color: var(--mid);
  font-weight: 700; font-size: .78rem; font-family: var(--font-head);
  transition: all var(--trans);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  min-height: 68px;
}
.step-dot .step-icon { font-size: 1.3rem; line-height: 1; }
.step-dot .step-text { line-height: 1.2; }
.step-dot.active { background: var(--pink); color: var(--white); }
.step-dot.done { background: var(--blue); color: var(--white); cursor: pointer; }
.step-dot.done:hover { opacity: .85; }

.reveal-card {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--white); border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-md); padding: 18px 24px; margin-bottom: 12px;
  cursor: pointer; transition: border-color var(--trans);
}
.reveal-card:hover { border-color: var(--forest-light); }
.reveal-card .label { font-weight: 700; color: var(--dark); }
.reveal-card .amt { font-family: var(--font-head); font-weight: 700; color: var(--blue); font-size: 1.25rem; }

/* ── QUIZ PROGRESS (cuestionario paso a paso) ──────── */
.quiz-progress { margin-bottom: 28px; }
.quiz-progress-label { font-size: .85rem; color: var(--mid); margin-bottom: 8px; font-weight: 600; }
.quiz-progress-track { height: 8px; background: var(--cream-dark); border-radius: 100px; overflow: hidden; }
.quiz-progress-fill { height: 100%; background: var(--pink); border-radius: 100px; transition: width .3s ease; }
.quiz-step-title { margin-bottom: 6px; }
.quiz-step-hint { margin-bottom: 18px; }
.quiz-back {
  display: inline-flex; align-items: center; gap: 4px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: .85rem; font-weight: 700;
  color: var(--mid); margin-bottom: 14px; padding: 0;
}
.quiz-back:hover { color: var(--forest); }

/* ── FOOTER ────────────────────────────────────────── */
.footer { background: var(--forest-dark); color: var(--cream); padding-block: 40px; text-align: center; font-size: .88rem; }

/* ── HERO PHOTO ────────────────────────────────────── */
.hero-photo-wrap { position: relative; }
.hero-photo {
  width: 100%; height: auto;
  display: block;
}
.hero-mini-card {
  position: absolute; bottom: -28px; left: -24px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 16px 20px; box-shadow: var(--shadow-md);
  font-family: var(--font-head); font-size: .92rem; color: var(--dark);
  max-width: 240px;
}
.hero-mini-card .amt { color: var(--pink); font-weight: 700; }

/* ── STAT BAR (prueba social) ─────────────────────── */
.stat-bar { background: var(--white); border-block: 1px solid var(--cream-dark); }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-block: 36px; text-align: center; }
.stat-number { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--blue); }
.stat-label { font-size: .88rem; color: var(--mid); margin-top: 4px; }

/* ── TRUST ROW (badges de confianza) ──────────────── */
.trust-row { display: flex; justify-content: center; gap: 44px; flex-wrap: wrap; padding-block: 22px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--mid); font-size: .88rem; }
.trust-item .trust-icon { font-size: 1.35rem; }

/* ── BOLD BANNER (refuerzo de mensaje) ────────────── */
.bold-banner { background: var(--blue); color: var(--white); text-align: center; padding-block: 56px; }
.bold-banner h2 { color: var(--white); }
.bold-banner p { color: rgba(255,255,255,.85); margin-top: 10px; max-width: 560px; margin-inline: auto; }

/* ── QUIZ CTA (banda intermedia) ──────────────────── */
.quiz-cta { background: var(--pink); color: var(--white); text-align: center; padding-block: 56px; }
.quiz-cta h2 { color: var(--white); }
.quiz-cta p { color: rgba(255,255,255,.9); margin-top: 10px; max-width: 520px; margin-inline: auto; }
.quiz-cta .btn-primary { background: var(--white); color: var(--pink); border-color: var(--white); margin-top: 22px; }
.quiz-cta .btn-primary:hover { background: var(--cream); border-color: var(--cream); }

/* ── CONNECTOR STEPS ("cómo funciona" con líneas) ─── */
.connector-steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; margin-top: 44px; flex-wrap: wrap; }
.connector-step { flex: 1 1 220px; max-width: 260px; text-align: center; padding-inline: 12px; }
.connector-step .connector-icon { font-size: 2.4rem; margin-bottom: 14px; }
.connector-step h3 { margin-bottom: 8px; }
.connector-line { flex: 0 0 50px; height: 2px; margin-top: 32px; background: repeating-linear-gradient(90deg, var(--light) 0 8px, transparent 8px 16px); }
@media (max-width: 760px) { .connector-line { display: none; } }

/* ── SPLIT SECTION (imagen + texto) ───────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-img-single img { width: 100%; height: auto; display: block; }
.check-list { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--dark); }
.check-list .dot { width: 22px; height: 22px; border-radius: 50%; background: var(--pink-light); color: var(--pink); display: inline-flex; align-items: center; justify-content: center; font-size: .8rem; flex-shrink: 0; }

/* ── TESTIMONIOS ───────────────────────────────────── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-md); padding: 28px 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--cream-dark); }
.testimonial-stars { color: var(--pink); letter-spacing: 2px; margin-bottom: 12px; font-size: .95rem; }
.testimonial-quote { color: var(--dark); font-size: .96rem; margin-bottom: 18px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-person img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.testimonial-person .name { font-weight: 700; font-size: .9rem; color: var(--dark); }
.testimonial-person .dog { font-size: .8rem; color: var(--mid); }

/* ── CTA BAND ──────────────────────────────────────── */
.cta-band { background: var(--blue); color: var(--white); text-align: center; padding-block: 64px; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,.85); margin-top: 10px; }
.cta-price { font-family: var(--font-head); font-weight: 800; font-size: 3rem; color: var(--pink-light); margin-block: 6px; }
.cta-badge { display: inline-block; background: rgba(255,255,255,.15); color: var(--white); padding: 6px 16px; border-radius: 100px; font-size: .82rem; font-weight: 700; }
.cta-price-row { display: flex; align-items: baseline; justify-content: center; gap: 14px; margin-block: 6px; flex-wrap: wrap; }
.cta-price-old { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: rgba(255,255,255,.5); text-decoration: line-through; }

/* ── FAQ ───────────────────────────────────────────── */
.faq-list { max-width: 720px; margin-top: 32px; }
.faq-item { border-bottom: 1px solid var(--cream-dark); padding-block: 18px; }
.faq-item summary { cursor: pointer; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--dark); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--pink); margin-left: 12px; }
.faq-item[open] summary::after { content: '–'; }
.faq-item p { margin-top: 12px; max-width: 620px; }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* El botón principal y el texto de candado tienen una versión "desktop" (dentro
   de la columna de texto) y una versión "mobile" (ancho completo, fuera de esa
   columna) — en cada breakpoint se muestra solo la que corresponde, para que en
   mobile el texto siempre quepa en una sola línea. */
.hero-actions-mobile, .hero-lock-text-mobile { display: none; }

/* Mantiene el hero en dos columnas (texto + foto) incluso en mobile, agranda la
   foto, y usa las versiones "mobile" del botón y el texto de candado (ancho
   completo) para que el texto quepa en una sola línea sin achicarse demasiado. */
@media (max-width: 640px) {
  .hero { padding-block: 24px 32px; }
  .hero-inner { gap: 12px; grid-template-columns: .78fr 1.22fr; }
  .hero-badge { font-size: .68rem; padding: 6px 10px; }
  .hero-title { font-size: 1.45rem; margin-bottom: 8px; }
  .hero-lead { font-size: .78rem; margin-bottom: 8px; }

  .hero-actions-desktop, .hero-lock-text-desktop { display: none; }
  .hero-actions-mobile { display: block; margin-top: 18px; }
  .hero-actions-mobile .btn {
    width: 100%; font-size: .82rem; padding: 15px 10px;
    white-space: nowrap;
  }
  .hero-lock-text-mobile {
    display: block; margin-top: 10px; text-align: center;
    font-size: .74rem; color: var(--mid); white-space: nowrap;
  }

  .nav-inner { padding-block: 12px; }
  .nav-logo-img { height: 28px; }
  .nav-actions { gap: 6px; }
  .nav-actions .btn { font-size: .7rem; padding: 8px 10px; white-space: nowrap; }
}
