
:root {
  --bg: #ffffff;
  --cream: #f8f4ec;
  --cream-deep: #f1e8d8;
  --ink: #23201a;
  --muted: #6f665a;
  --line: #e8dfce;
  --primary: #0f766e;
  --primary-ink: #0a5952;
  --primary-soft: #e2f0ed;
  --accent: #ef9f34;
  --accent-soft: #fdf0d9;
  --whatsapp: #1fab5a;
  --whatsapp-ink: #178a49;
  --star: #f0a828;
  --font-display: "Baloo 2", ui-rounded, system-ui, sans-serif;
  --font-body: "Figtree", system-ui, -apple-system, sans-serif;
  --sp-1: .5rem;
  --sp-2: .75rem;
  --sp-3: 1rem;
  --sp-4: 1.5rem;
  --sp-5: 2.25rem;
  --sp-6: 3.5rem;
  --sp-7: 5.5rem;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;
  --shadow-soft: 0 12px 34px rgba(35, 32, 26, .07);
  --shadow-lift: 0 18px 46px rgba(35, 32, 26, .11);
  --container: 1140px;
  --ease: cubic-bezier(.32, .72, 0, 1);
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 .4em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.3rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
.band { width: 100%; }
.band--cream { background: var(--cream); }
.band--deep { background: var(--cream-deep); }
.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}
.section { padding-block: var(--sp-7); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--primary-ink);
  background: var(--primary-soft);
  padding: .4rem .85rem;
  border-radius: var(--r-pill);
}
.lede { font-size: 1.2rem; color: var(--muted); max-width: 46ch; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: .85rem 1.35rem;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-ink); box-shadow: var(--shadow-soft); }
.btn-wa { background: var(--whatsapp); color: #fff; }
.btn-wa:hover { background: var(--whatsapp-ink); box-shadow: var(--shadow-soft); }
.btn-outline { border-color: var(--line); background: #fff; color: var(--ink); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary-ink); }
.btn-ghost { color: var(--primary-ink); padding-inline: .6rem; }
.btn-ghost:hover { color: var(--primary); }
.btn .ico {
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .22);
  transition: transform .25s var(--ease);
}
.btn:hover .ico { transform: translateX(2px); }
.btn-lg { padding: 1rem 1.6rem; font-size: 1.05rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: .85rem;
}
.brand { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--ink); }
.brand .dot { width: 1.6rem; height: 1.6rem; border-radius: var(--r-pill); background: var(--primary); display: grid; place-items: center; color: #fff; }
.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav a { font-weight: 500; color: var(--muted); transition: color .2s var(--ease); }
.nav a:hover { color: var(--ink); }
.nav-toggle { display: none; }
.hero { padding-block: clamp(3rem, 7vw, 5.5rem); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: var(--sp-6); align-items: center; }
.hero h1 { margin-top: .8rem; }
.hero .lede { margin-bottom: 1.6rem; }
.hero-art { display: block; }
.city-search {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  padding: .4rem .4rem .4rem 1.2rem;
  box-shadow: var(--shadow-soft);
  max-width: 30rem;
}
.city-search svg { color: var(--muted); flex: none; }
.city-search input {
  flex: 1;
  border: 0;
  outline: none;
  font: inherit;
  color: var(--ink);
  background: transparent;
  padding: .55rem 0;
}
.chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.1rem; }
.chip {
  font-size: .92rem;
  font-weight: 500;
  padding: .45rem 1rem;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--ink);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.chip:hover { border-color: var(--primary); transform: translateY(-1px); }
.help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.help-item .badge { width: 3rem; height: 3rem; border-radius: var(--r-md); background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: 1rem; }
.providers { display: grid; gap: 1rem; }
.provider {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-soft);
}
.provider-top { display: flex; justify-content: space-between; gap: 1rem; align-items: start; flex-wrap: wrap; }
.provider h3 { margin: 0; font-size: 1.2rem; }
.rating { display: inline-flex; align-items: center; gap: .35rem; font-weight: 600; font-size: .92rem; color: var(--ink); background: var(--accent-soft); padding: .3rem .7rem; border-radius: var(--r-pill); }
.rating .star { color: var(--star); }
.rating .count { color: var(--muted); font-weight: 500; }
.tags { display: flex; flex-wrap: wrap; gap: .45rem; margin: .8rem 0 1rem; }
.tag { font-size: .82rem; color: var(--primary-ink); background: var(--primary-soft); padding: .3rem .7rem; border-radius: var(--r-pill); }
.provider-actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.empty {
  background: #fff;
  border: 1.5px dashed var(--line);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  text-align: center;
}
.empty .badge { width: 3.2rem; height: 3.2rem; border-radius: var(--r-pill); background: var(--primary-soft); color: var(--primary); display: grid; place-items: center; margin: 0 auto 1rem; }
.prose { max-width: none; }
.prose h2 { margin-top: 2.2rem; }
.prose p { color: #3a352c; }
.prose ul { padding-left: 1.2rem; }
.prose .lead-answer { font-size: 1.2rem; font-weight: 600; color: var(--ink); border-left: 3px solid var(--primary); padding-left: 1rem; margin: 0 0 1.6rem; }
.cmp-wrap { overflow-x: auto; margin: 1.4rem 0 1.8rem; }
.prose .cmp { width: 100%; border-collapse: collapse; font-size: .98rem; }
.prose .cmp th, .prose .cmp td { text-align: left; padding: .7rem .9rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose .cmp thead th { font-family: var(--font-display); background: var(--cream); }
.prose .cmp tbody th { font-weight: 600; color: var(--muted); }
.routes { list-style: none; padding-left: 0; display: grid; gap: .55rem; }
.routes li { padding-left: 1.3rem; position: relative; }
.routes li::before { content: "\2192"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.faq { display: grid; gap: .55rem; }
.faq details { border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff; overflow: hidden; }
.faq summary { cursor: pointer; padding: .85rem 1.1rem; font-family: var(--font-display); font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--primary); font-weight: 700; font-size: 1.25rem; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq .faq-a { padding: .85rem 1.1rem; color: #3a352c; }
.guide-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.guide-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.guide-card h3 { margin-bottom: .4rem; }
.guide-card p { color: var(--muted); margin: 0; font-size: .95rem; }
.site-footer { background: var(--ink); color: #d9d2c6; padding-block: var(--sp-6); }
.site-footer a { color: #d9d2c6; }
.site-footer a:hover { color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr; gap: var(--sp-4); }
.footer-directory { margin-top: var(--sp-5); padding-top: var(--sp-4); border-top: 1px solid rgba(255,255,255,.12); }
.footer-directory h3 { margin-bottom: .9rem; }
.footer-cities { display: grid; grid-template-columns: repeat(auto-fill, minmax(132px, 1fr)); gap: .4rem 1rem; font-size: .9rem; }
.footer-note { border-top: 1px solid rgba(255,255,255,.12); margin-top: var(--sp-4); padding-top: var(--sp-3); font-size: .85rem; color: #9c9488; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 4px; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .hero-art { max-width: 22rem; }
  .help-grid, .guide-cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 1rem; }
  .section { padding-block: var(--sp-6); }
  .nav { display: none; }
  .nav.open { display: flex; position: absolute; inset: 100% 0 auto; flex-direction: column; align-items: flex-start; gap: 1rem; background: #fff; padding: 1.2rem 1.25rem; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: inline-grid; place-items: center; width: 2.6rem; height: 2.6rem; border-radius: var(--r-pill); border: 1.5px solid var(--line); background: #fff; }
  .provider-actions .btn { flex: 1 1 auto; justify-content: center; }
}
