/* Cobby landing — design system v2 (teal/sage, Baloo 2 + Nunito) */

:root {
  --bg: #F8FAF2;
  --card: #FFFFFF;
  --border: rgba(35, 87, 84, .12);
  --teal: #235754;
  --teal-deep: #1A423F;
  --teal-ink: #173F3D;
  --on-teal: #F9FBF4;
  --on-teal-soft: rgba(249, 251, 244, .14);
  --sage: #BCE2CC;
  --sage-full: #9ED2B3;
  --muted: #E6F2E8;
  --text: #213E3C;
  --text-2: #3E5B58;
  --text-3: #566F6B;
  --warning: #C98A2E;
  --r-md: 16px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-xxl: 36px;
  --r-huge: 52px;
  --font-head: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -.5px;
  line-height: 1.12;
  color: var(--text);
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- botones pill ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  padding: 15px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: var(--on-teal); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(35, 87, 84, .25); }
.btn-sage { background: var(--sage); color: var(--teal-ink); }
.btn-sage:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0, 0, 0, .22); }
.btn-big { font-size: 19px; padding: 18px 40px; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 242, .86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
}
.nav.scrolled { border-bottom-color: rgba(35, 87, 84, .1); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand img { width: 44px; height: 44px; }
.brand span {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 26px;
  color: var(--teal);
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--text-2);
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--teal); }
.nav .btn { font-size: 15.5px; padding: 11px 24px; }

/* ---------- hero ---------- */
.hero { padding: 56px 0 0; position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}
.hero h1 { font-size: clamp(42px, 5.4vw, 68px); }
.hero h1 em { font-style: normal; color: var(--teal); }
.hero-sub {
  margin-top: 20px;
  font-size: 19px;
  color: var(--text-2);
  max-width: 46ch;
}
.hero-ctas {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-link {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  font-size: 17px;
}
.hero-link:hover { text-decoration: underline; }
.hero-meta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-3);
  font-weight: 600;
  font-size: 15px;
}
.hero-meta img { width: 34px; height: 34px; }
.store-badges { margin-top: 18px; display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.2;
  padding: 9px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--card);
  color: var(--text-2);
  font-size: 14.5px;
  font-weight: 700;
}
.store-badge small { font-weight: 600; font-size: 11.5px; color: var(--text-3); }

/* escena del hero: blob + telefono + tortuga */
.hero-scene { position: relative; min-height: 540px; }
.blob {
  position: absolute;
  border-radius: 46% 54% 52% 48% / 55% 46% 54% 45%;
  background: var(--sage);
  opacity: .55;
}
.hero-scene .blob { width: min(430px, 110vw); height: 410px; top: 30px; right: 10px; }
.hero-turtle {
  position: absolute;
  width: 300px;
  bottom: 72px;
  left: -12px;
  z-index: 3;
  animation: bob 3.2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* ---------- phone mockup (CSS puro) ---------- */
.phone {
  position: relative;
  width: 290px;
  border-radius: 44px;
  background: #10201F;
  padding: 10px;
  box-shadow: 0 24px 60px rgba(23, 63, 61, .28);
  z-index: 2;
}
.hero-scene .phone { position: absolute; right: 48px; top: 0; transform: rotate(3deg); }
.phone-screen {
  border-radius: 36px;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  height: 560px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 22px;
  background: #10201F;
  border-radius: 999px;
  z-index: 5;
}
.app-header {
  background: var(--teal);
  color: var(--on-teal);
  padding: 44px 18px 16px;
  border-radius: 0 0 30px 30px;
  font-family: var(--font-head);
}
.app-header .small { font-size: 11px; opacity: .8; font-family: var(--font-body); font-weight: 600; }
.app-header .big { font-size: 17px; font-weight: 700; }
.app-map {
  flex: 1;
  position: relative;
  background:
    linear-gradient(rgba(158, 210, 179, .16), rgba(158, 210, 179, .16)),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(35, 87, 84, .07) 34px 35px),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(35, 87, 84, .07) 34px 35px),
    #EFF6EC;
}
.app-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-pin {
  position: absolute;
  width: 52px;
  right: 46px;
  top: 78px;
  filter: drop-shadow(0 4px 8px rgba(23, 63, 61, .3));
}
.app-card {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 12px 14px;
  box-shadow: 0 8px 20px rgba(23, 63, 61, .12);
}
.app-card-row { display: flex; align-items: center; gap: 10px; }
.app-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sage);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--teal-ink);
}
.app-card .name { font-weight: 800; font-size: 13.5px; }
.app-card .status { font-size: 11.5px; color: var(--text-3); font-weight: 600; }
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2F8F63;
  margin-right: 5px;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47, 143, 99, .5); }
  50% { box-shadow: 0 0 0 6px rgba(47, 143, 99, 0); }
}
.app-chips { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.app-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--muted);
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-2);
  white-space: nowrap;
}
.app-chip img { width: 16px; height: 16px; }

/* notificacion flotante */
.float-notif {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 10px 16px 10px 10px;
  box-shadow: 0 12px 28px rgba(23, 63, 61, .18);
  z-index: 4;
}
.float-notif img { width: 42px; height: 42px; }
.float-notif .t { font-weight: 800; font-size: 13px; line-height: 1.3; }
.float-notif .s { font-size: 12px; color: var(--text-3); font-weight: 600; }

/* ---------- divisores curvos ---------- */
.curve { display: block; width: 100%; height: 72px; }
@media (max-width: 720px) { .curve { height: 36px; } }

/* ---------- franja de confianza ---------- */
.trustbar { background: var(--sage); }
.trustbar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 30px;
  padding-bottom: 42px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--teal-ink);
  font-size: 15.5px;
  line-height: 1.35;
}
.trust-ico {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  background: rgba(249, 251, 244, .55);
  display: grid;
  place-items: center;
}
.trust-ico svg { width: 24px; height: 24px; stroke: var(--teal); }

/* ---------- toggle de audiencia (dueño / paseador) ---------- */
[data-audience="paseador"] .dueno-only { display: none; }
[data-audience="dueno"] .paseador-only { display: none; }
.audience-toggle {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 26px;
}
.audience-btn {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--teal-ink);
  background: rgba(249, 251, 244, .65);
  border: 1px solid rgba(23, 63, 61, .18);
  border-radius: 999px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.audience-btn:hover { background: rgba(249, 251, 244, .9); }
.audience-btn[aria-pressed="true"] { background: var(--teal); color: var(--on-teal); border-color: var(--teal); }
.audience-btn:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

/* ---------- secciones genericas ---------- */
.section { padding: 88px 0; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 44px); }
.section-head p { margin-top: 14px; color: var(--text-2); font-size: 18px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--sage);
  border-radius: 999px;
  padding: 5px 16px;
  margin-bottom: 16px;
}

/* como funciona */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 26px 22px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(23, 63, 61, .1); }
.step-card img { width: 200px; height: 200px; margin: 0 auto 10px; }
.step-card h3 { font-size: 21px; margin-bottom: 8px; }
.step-card p { font-size: 15px; color: var(--text-2); }
.steps-more { text-align: center; margin-top: 28px; }
/* .step-card es un <details> con open por default (desktop/tablet, y
   fallback sin JS): el texto queda siempre visible. El JS lo cierra
   solo en mobile, donde el tap para desplegar tiene sentido (ver
   breakpoint + script). */
.step-card summary { display: block; list-style: none; cursor: default; }
.step-card summary::-webkit-details-marker { display: none; }
.step-card summary::after { content: none; }
#paseadores .steps { margin-bottom: 64px; }

/* ---------- bloque teal: paseo en vivo ---------- */
.live { background: var(--teal); color: var(--on-teal); }
.live-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 72px;
}
.live h2 { color: var(--on-teal); font-size: clamp(30px, 3.6vw, 44px); }
.live .lead { margin-top: 16px; font-size: 18px; color: rgba(249, 251, 244, .85); }
.live-feats { margin-top: 32px; display: grid; gap: 14px; }
.live-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--on-teal-soft);
  border-radius: var(--r-lg);
  padding: 16px 18px;
}
.live-feat svg { flex: none; width: 24px; height: 24px; stroke: var(--sage-full); margin-top: 2px; }
.live-feat b { font-family: var(--font-head); font-size: 16.5px; display: block; }
.live-feat span { font-size: 14.5px; color: rgba(249, 251, 244, .9); }
.checklist-strip {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.checklist-strip .lbl { font-weight: 700; font-size: 14px; color: rgba(249, 251, 244, .75); margin-right: 4px; }
.check-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(249, 251, 244, .92);
  color: var(--teal-ink);
  border-radius: 999px;
  padding: 6px 14px 6px 7px;
  font-weight: 800;
  font-size: 13.5px;
}
.check-badge img { width: 26px; height: 26px; }
.live-details summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  color: var(--on-teal);
}
.live-details summary::-webkit-details-marker { display: none; }
.live-details summary::after {
  content: '';
  flex: none;
  width: 12px;
  height: 12px;
  border-right: 2.5px solid var(--sage-full);
  border-bottom: 2.5px solid var(--sage-full);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.live-details[open] summary::after { transform: rotate(225deg); }
.live-scene { position: relative; min-height: 620px; }
.live-scene .phone { position: absolute; left: 50%; transform: translateX(-50%) rotate(-3deg); top: 8px; }
.live-scene .float-notif { top: 40px; right: -6px; animation: bob 3.6s ease-in-out infinite; }

/* ---------- seguridad ---------- */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.safety-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xxl);
  padding: 34px 28px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.safety-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(23, 63, 61, .1); }
.safety-card img { width: 250px; height: 250px; margin: 0 auto 18px; }
.safety-card h3 { font-size: 23px; margin-bottom: 10px; }
.safety-card p { color: var(--text-2); font-size: 15.5px; }

/* ---------- grupal ---------- */
.group { background: var(--sage); }
.group-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 70px;
}
.group-grid h2 { font-size: clamp(30px, 3.6vw, 42px); color: var(--teal-ink); }
.group-grid .lead { margin-top: 14px; color: var(--teal-ink); opacity: .85; font-size: 17.5px; }
.group-img { width: min(440px, 90%); margin: 0 auto; }
.plan-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 22px;
}
.plan-card h3 { font-size: 19px; }
.plan-card p { font-size: 14px; color: var(--text-2); margin-top: 6px; }
.plan-pill {
  display: inline-block;
  margin-top: 12px;
  background: var(--muted);
  color: var(--teal);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  padding: 5px 14px;
}
.plan-card.featured { outline: 2.5px solid var(--teal); position: relative; }
.plan-tag {
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--teal);
  color: var(--on-teal);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  border-radius: 999px;
  padding: 3px 12px;
}

/* ---------- paseadores ---------- */
.sitters-card {
  background: var(--teal);
  border-radius: var(--r-huge);
  color: var(--on-teal);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.sitters-card h2 { color: var(--on-teal); font-size: clamp(28px, 3.4vw, 40px); }
.sitters-card .lead { margin-top: 14px; color: rgba(249, 251, 244, .85); font-size: 17.5px; }
.sitter-bullets { margin-top: 26px; display: grid; gap: 12px; list-style: none; }
.sitter-bullets li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; font-weight: 600; }
.sitter-bullets svg { flex: none; width: 22px; height: 22px; stroke: var(--sage-full); margin-top: 3px; }
.sitters-cta { margin-top: 32px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.sitters-cta .micro { font-size: 13.5px; color: rgba(249, 251, 244, .7); font-weight: 600; }
.sitters-scene { position: relative; text-align: center; }
.sitters-scene img { width: min(420px, 92%); margin: 0 auto; }
.earn-chip {
  position: absolute;
  top: 6px;
  right: 4px;
  background: var(--card);
  color: var(--text);
  border-radius: var(--r-lg);
  padding: 12px 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .25);
  text-align: left;
  animation: bob 3.4s ease-in-out infinite;
}
.earn-chip .amount { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--teal); }
.earn-chip .lbl { font-size: 12px; font-weight: 700; color: var(--text-3); }

/* ---------- cordoba ---------- */
.cordoba { text-align: center; }
.cordoba-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; text-align: left; }
.cordoba-copy h2 { font-size: clamp(28px, 3.4vw, 40px); }
.cordoba-copy p { margin-top: 12px; color: var(--text-2); font-size: 17.5px; max-width: 48ch; }
.cordoba .btn { margin-top: 26px; }
.cordoba-scene { position: relative; min-height: 340px; display: grid; place-items: center; }
.cordoba-blob { width: min(360px, 100%); height: min(340px, 90%); top: 0; left: 50%; transform: translateX(-50%); }
.cordoba-pin-big { width: 190px; position: relative; z-index: 2; }
.cordoba-chip {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 700;
  font-size: 14px;
  color: var(--teal-ink);
  box-shadow: 0 10px 24px rgba(23, 63, 61, .15);
  z-index: 3;
  animation: bob 3.6s ease-in-out infinite;
}
.cordoba-chip.chip-1 { top: 8%; left: 0%; }
.cordoba-chip.chip-2 { bottom: 10%; right: 0%; animation-delay: .4s; }
.cordoba-chip.chip-3 { top: 64%; left: 56%; animation-delay: .8s; }

/* ---------- faq ---------- */
.faq { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; align-items: start; }
.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 0;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 15px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  flex: none;
  width: 11px;
  height: 11px;
  border-right: 2.5px solid var(--teal);
  border-bottom: 2.5px solid var(--teal);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.faq details[open] > summary::after { transform: rotate(225deg); }
.faq details p { padding: 0 20px 16px; color: var(--text-2); font-size: 14.5px; }
/* botón "Ver más preguntas": solo existe visualmente en mobile (ver
   breakpoint). En desktop/tablet queda oculto y las 6 preguntas se ven
   siempre -- nada de <details> anidados ni display:contents, para no
   depender de un combo de CSS más frágil entre navegadores. */
.faq-more-btn {
  display: none;
  margin: 14px auto 0;
  cursor: pointer;
  background: none;
  border: none;
  list-style: none;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--teal);
}
.faq-more-btn::after {
  content: '';
  width: 9px;
  height: 9px;
  border-right: 2.5px solid var(--teal);
  border-bottom: 2.5px solid var(--teal);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.faq-more-btn[aria-expanded="true"]::after { transform: rotate(225deg); }

/* ---------- CTA final ---------- */
.final { background: var(--teal); color: var(--on-teal); text-align: center; }
.final-inner { padding-top: 30px; padding-bottom: 80px; position: relative; }
.promo-sticker {
  position: absolute;
  top: 245px;
  right: 4%;
  width: 150px;
  transform: rotate(-9deg);
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .38));
  z-index: 3;
}
@media (max-width: 700px) {
  .promo-sticker { width: 88px; right: 2%; top: 300px; }
}
.final img.celebrate { width: 230px; margin: 0 auto 10px; }
.final h2 { color: var(--on-teal); font-size: clamp(32px, 4.2vw, 52px); }
.final p { margin-top: 14px; font-size: 18.5px; color: rgba(249, 251, 244, .85); }
.final p b { color: var(--sage-full); }
.final .ctas { margin-top: 32px; display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- footer ---------- */
.footer { background: var(--teal-deep); color: rgba(249, 251, 244, .82); position: relative; }
.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-top: 64px;
  padding-bottom: 40px;
}
/* asoma sobre la costura entre el CTA y el footer, alineada con el
   botón en vez de aislada en una esquina. El offset (-88px) no es
   arbitrario: es donde el borde recto del caparazón (el "borde" sobre
   el que asoma) cae en el PNG -- medido con el canal alfa, y=487.5 de
   720px de alto -> 487.5/720*130. Si cambia el asset o su tamaño,
   recalcular para que el borde dibujado quede sobre la costura real. */
.peek {
  position: absolute;
  top: -88px;
  left: calc(50% + 130px);
  width: 130px;
  z-index: 1;
}
.footer .brand span { color: var(--on-teal); }
.footer .tagline { margin-top: 12px; font-size: 14.5px; max-width: 30ch; }
.footer h3 {
  font-family: var(--font-head);
  color: var(--on-teal);
  font-size: 15.5px;
  margin-bottom: 14px;
}
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a { text-decoration: none; font-size: 14.5px; transition: color .15s ease; }
.footer a:hover { color: var(--on-teal); }
.footer-bottom {
  border-top: 1px solid rgba(249, 251, 244, .12);
  padding: 22px 0;
  text-align: center;
  display: grid;
  gap: 10px;
  justify-items: center;
}
.made-with {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(249, 251, 244, .7);
}
.made-label { display: inline-flex; align-items: center; gap: 6px; }
.heart-ico { width: 14px; height: 14px; color: var(--sage-full); animation: heartbeat 1.8s ease-in-out infinite; }
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.18); }
  40% { transform: scale(1); }
}
.made-city {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249, 251, 244, .08);
  border: 1px solid rgba(249, 251, 244, .16);
  border-radius: 999px;
  padding: 5px 14px 5px 10px;
  color: var(--on-teal);
}
.pin-ico { width: 14px; height: 14px; flex: none; color: var(--sage-full); }
.made-sep { color: rgba(249, 251, 244, .45); }
.footer-copy { font-size: 12.5px; color: rgba(249, 251, 244, .5); }
@media (max-width: 560px) {
  .made-with { font-size: 12.5px; gap: 6px; }
  .made-city { padding: 4px 12px 4px 8px; }
}

/* ---------- animacion on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-turtle, .float-notif, .earn-chip, .cordoba-chip, .heart-ico { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .live-grid, .group-grid { grid-template-columns: 1fr; }
  .hero-scene { min-height: 500px; margin-top: 12px; }
  .hero-scene .phone { right: 50%; transform: translateX(62%) rotate(3deg); }
  .hero-turtle { left: 4%; width: 240px; bottom: 50px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .safety-grid { grid-template-columns: 1fr; }
  .safety-card img { width: 220px; height: 220px; }
  .sitters-card { grid-template-columns: 1fr; padding: 40px 28px; gap: 16px; }
  .trustbar-inner { grid-template-columns: 1fr 1fr; }
  .live-scene { min-height: 600px; }
  .live-scene .float-notif { right: 2px; }
  .nav-links { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .group-img { order: -1; }
  .cordoba-grid { grid-template-columns: 1fr; text-align: center; }
  .cordoba-copy p { margin-left: auto; margin-right: auto; }
  .cordoba .wl-form { margin: 26px auto 0; }
  .wl-form .sug-tipos { justify-content: center; }
  .cordoba-scene { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .plan-cards { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; }
  /* solo la 1ra pregunta queda visible; el resto detrás de "Ver más preguntas" */
  .faq > details ~ details { display: none; }
  .faq.mostrar-todas > details ~ details { display: block; }
  .faq-more-btn { display: flex; justify-content: center; }
  /* pasos: cuadrícula 2x2 de ícono+título; el texto se despliega al tocar */
  .steps { grid-template-columns: 1fr 1fr; gap: 10px; }
  .step-card { position: relative; padding: 20px 12px 16px; }
  .step-card:hover { transform: none; box-shadow: none; }
  .step-card summary { cursor: pointer; }
  .step-card img { width: 108px; height: 108px; margin: 0 auto 8px; }
  .step-card h3 { font-size: 14.5px; margin-bottom: 0; line-height: 1.25; }
  .step-card summary::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    margin: 10px auto 0;
    border-right: 2px solid var(--teal);
    border-bottom: 2px solid var(--teal);
    transform: rotate(45deg);
    transition: transform .2s ease;
  }
  .step-card[open] summary::after { transform: rotate(225deg); }
  .step-card > p { font-size: 12.5px; margin-top: 10px; text-align: left; }
  .trustbar-inner { grid-template-columns: 1fr; padding-bottom: 34px; }
  .hero { padding-top: 36px; }
  .hero-scene { min-height: 500px; }
  .phone { width: 250px; }
  .phone-screen { height: 490px; }
  .hero-scene .phone { transform: translateX(70%) rotate(3deg); }
  .hero-turtle { width: 185px; bottom: 130px; left: -14px; }
  .float-notif .t { font-size: 12px; }
  .live-scene .float-notif { top: -10px; }
  /* checklist: label en su línea y los 4 badges en UNA fila pareja */
  .checklist-strip { gap: 7px; }
  .checklist-strip .lbl { flex-basis: 100%; margin-right: 0; }
  .check-badge { flex: 1; justify-content: center; padding: 5px 4px; font-size: 12px; gap: 5px; }
  .check-badge img { width: 22px; height: 22px; }
  .peek { width: 96px; left: auto; right: 6%; top: -65px; }
  .footer-inner { grid-template-columns: 1fr; }
  .sitters-card { border-radius: var(--r-xxl); }
  .earn-chip { position: static; margin: 8px auto 0; width: max-content; }
}

/* ---------- guarderia / cuidado en viajes ---------- */
.care-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.care-grid h2 { font-size: clamp(30px, 3.6vw, 42px); }
.care-grid .lead { margin-top: 14px; color: var(--text-2); font-size: 17.5px; }
.care-feats { margin-top: 26px; display: grid; gap: 14px; }
.care-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 18px;
}
.care-ico {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  background: var(--muted);
  display: grid;
  place-items: center;
}
.care-ico svg { width: 22px; height: 22px; stroke: var(--teal); }
.care-feat b { font-family: var(--font-head); font-size: 16.5px; display: block; color: var(--text); }
.care-feat span { font-size: 14.5px; color: var(--text-2); }
.care-scene { position: relative; text-align: center; min-height: 420px; display: grid; place-items: center; }
.care-blob { width: min(400px, 100%); height: min(380px, 90%); top: 20px; left: 50%; transform: translateX(-50%); }
.care-scene > img { width: min(400px, 88%); position: relative; z-index: 2; }
.care-notif { bottom: 6px; right: 0; animation: bob 3.4s ease-in-out infinite; }
.care-notif img { width: 42px; height: 42px; }

/* ---------- formulario de sugerencias ---------- */
.sug-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xxl);
  padding: 34px;
  display: grid;
  gap: 18px;
}
.sug-tipos { display: flex; gap: 10px; flex-wrap: wrap; }
.sug-tipo { position: relative; }
.sug-tipo input { position: absolute; opacity: 0; pointer-events: none; }
.sug-tipo span {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-2);
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.sug-tipo input:checked + span { background: var(--teal); border-color: var(--teal); color: var(--on-teal); }
.sug-tipo input:focus-visible + span { outline: 2px solid var(--teal); outline-offset: 2px; }
.sug-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sug-field { display: grid; gap: 6px; }
.sug-field > span { font-weight: 700; font-size: 14.5px; color: var(--text); }
.sug-field em { font-style: normal; font-weight: 600; color: var(--text-3); }
.sug-field input, .sug-field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--muted);
  border: 1.5px solid transparent;
  border-radius: var(--r-md);
  padding: 12px 16px;
  transition: border-color .15s ease, background .15s ease;
  resize: vertical;
}
.sug-field input:focus, .sug-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--card);
}
.sug-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.sug-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.sug-status { font-weight: 700; font-size: 14.5px; color: #8A5A10; }
.sug-ok {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xxl);
  padding: 44px 34px;
  text-align: center;
}
.sug-ok img { width: 160px; margin: 0 auto 12px; }
.sug-ok h3 { font-size: 24px; }
.sug-ok p { color: var(--text-2); margin: 10px 0 22px; }

@media (max-width: 980px) {
  .care-grid { grid-template-columns: 1fr; }
  .care-scene { order: -1; min-height: 360px; }
}
@media (max-width: 560px) {
  .sug-row { grid-template-columns: 1fr; }
  .sug-form { padding: 22px 18px; }
  .care-scene > img { width: 72%; }
}

/* ---------- lista de espera (seccion Cordoba) ---------- */
.wl-form {
  max-width: 560px;
  margin: 26px 0 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xxl);
  padding: 26px;
  display: grid;
  gap: 16px;
  text-align: left;
}
.wl-row { display: grid; grid-template-columns: 1.2fr 1fr; gap: 14px; }
.wl-ok { margin-top: 26px; }
.wl-ok h3 { font-size: 24px; }
.wl-ok p { color: var(--text-2); }
@media (max-width: 560px) {
  .wl-row { grid-template-columns: 1fr; }
  .wl-form { padding: 20px 16px; }
}

/* ---------- servicios (menú de lo que damos hoy) ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xxl);
  padding: 32px 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(23, 63, 61, .1); }
.svc-ico {
  width: 60px;
  height: 60px;
  border-radius: var(--r-lg);
  background: var(--muted);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.svc-ico svg { width: 30px; height: 30px; stroke: var(--teal); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.svc-card h3 { font-size: 22px; margin-bottom: 8px; }
.svc-card p { color: var(--text-2); font-size: 15.5px; }
.svc-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  background: var(--muted);
  color: var(--teal);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  border-radius: 999px;
  padding: 5px 14px 5px 12px;
}
.svc-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #2F8F63; }

/* ---------- roadmap (lo que se viene) ---------- */
.roadmap { background: var(--teal); color: var(--on-teal); }
.roadmap-inner { padding-top: 24px; padding-bottom: 78px; }
.roadmap .section-head h2 { color: var(--on-teal); }
.roadmap .section-head p { color: rgba(249, 251, 244, .85); }
.roadmap-track {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.road-step {
  background: var(--card);
  border-radius: var(--r-xxl);
  padding: 30px 28px;
}
.road-step.is-next { outline: 3px solid var(--sage-full); }
.road-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.road-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--muted);
  color: var(--teal-ink);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
}
.road-step.is-next .road-num { background: var(--teal); color: var(--on-teal); }
.road-ico { width: 30px; height: 30px; stroke: var(--sage-full); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.road-step.is-next .road-ico { stroke: var(--teal); }
.road-step h3 { font-size: 21px; margin-bottom: 8px; }
.road-step p { color: var(--text-2); font-size: 15px; }
.road-pill {
  display: inline-block;
  margin-top: 16px;
  background: var(--muted);
  color: var(--text-3);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  border-radius: 999px;
  padding: 5px 14px;
}
.road-pill.next { background: var(--sage); color: var(--teal-ink); }

/* ---------- footer: orgullo argentino ---------- */
.pride {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 44px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.pride-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.pride-item img {
  width: 190px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .28));
}
.pride-item figcaption {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--on-teal);
  line-height: 1.4;
}
.pride-item figcaption .heart-ico {
  width: 15px;
  height: 15px;
  vertical-align: -2px;
  margin: 0 2px;
}
@media (max-width: 560px) {
  .pride { gap: 22px; }
  .pride-item img { width: 150px; }
}
