/* ==========================================================================
   HOSPITAL DO ANIMAL — Premium Mobile-First Design System
   Fonts: Playfair Display (headings) + Inter (body)
   ========================================================================== */

:root {
  /* Palette */
  --green-950: #0A1F1B;
  --green-900: #0C2A24;
  --green-800: #0E3A31;
  --teal-700: #0B7F74;
  --teal-600: #0D9488;
  --teal-500: #14B8A6;
  --teal-100: #CCF2EC;
  --gold-200: #EFD9A8;
  --gold-300: #E8C37B;
  --gold-400: #D9A94E;
  --gold-500: #C08F35;
  --gold-600: #A97628;
  --cream: #F7F2E9;
  --cream-2: #F0E9DC;
  --cream-3: #E9E0CF;
  --ink: #172320;
  --ink-soft: #33443F;
  --muted: #5E6E69;
  --white: #FFFFFF;
  --line: #E4DACB;
  --line-dark: rgba(255,255,255,0.14);
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --shadow-sm: 0 2px 10px rgba(10, 31, 27, 0.07);
  --shadow-md: 0 12px 30px rgba(10, 31, 27, 0.12);
  --shadow-lg: 0 24px 60px rgba(10, 31, 27, 0.18);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --container: 1180px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 14px);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.18; font-weight: 600; }

:focus-visible {
  outline: 3px solid var(--teal-600);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--teal-600);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 12px 0;
  z-index: 2000;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
  text-align: center;
  touch-action: manipulation;
}
.btn:active { transform: scale(0.97); }
.btn svg { flex-shrink: 0; }

.btn-teal { background: var(--teal-600); color: #fff; }
.btn-teal:hover { background: var(--teal-700); box-shadow: 0 10px 24px rgba(13, 148, 136, 0.35); }

.btn-gold { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); color: #2A1D05; }
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-300), var(--gold-400)); box-shadow: 0 10px 24px rgba(192, 143, 53, 0.4); }

.btn-whatsapp { background: var(--whatsapp); color: #063B1E; }
.btn-whatsapp:hover { background: #2CE079; box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35); }

.btn-ghost-light {
  background: rgba(255,255,255,0.06);
  color: var(--cream);
  border-color: rgba(255,255,255,0.28);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.5); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-outline-dark { background: transparent; color: var(--ink); border-color: var(--ink-soft); }
.btn-outline-dark:hover { background: var(--ink); color: var(--cream); }

.btn-lg { min-height: 54px; padding: 15px 30px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(10, 31, 27, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.site-header:not(.scrolled) { background: linear-gradient(180deg, rgba(10,31,27,0.7), rgba(10,31,27,0)); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.brand { display: flex; align-items: center; gap: 12px; min-height: 48px; }
.brand-mark { flex-shrink: 0; display: grid; place-items: center; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-head); font-size: 1.15rem; color: var(--cream); letter-spacing: 0.2px; }
.brand-text strong em { font-style: italic; color: var(--gold-300); }
.brand-text small { font-size: 0.68rem; color: rgba(247,242,233,0.72); letter-spacing: 0.6px; text-transform: uppercase; font-weight: 500; }

.main-nav ul { display: flex; gap: 4px; }
.nav-link {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  color: rgba(247,242,233,0.85);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-link:hover { color: var(--gold-300); }
.nav-link.active { color: var(--gold-300); background: rgba(217,169,78,0.12); }

.nav-cta { display: inline-flex; min-height: 44px; padding: 10px 18px; font-size: 0.9rem; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--cream);
  padding: 10px;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
}
.nav-close { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(13,148,136,0.35), transparent 60%),
    radial-gradient(900px 480px at 0% 110%, rgba(192,143,53,0.18), transparent 55%),
    linear-gradient(165deg, var(--green-950) 0%, var(--green-900) 55%, var(--green-800) 100%);
  color: var(--cream);
  padding: calc(var(--header-h) + 34px) 0 60px;
  overflow: hidden;
}

.hero-deco { position: absolute; inset: 0; pointer-events: none; }
.deco-paw { position: absolute; opacity: 0.12; }
.deco-paw-1 { top: 16%; right: -6%; transform: rotate(18deg); }
.deco-paw-2 { bottom: 14%; left: -4%; transform: rotate(-24deg); }
.deco-paw-3 { top: 58%; right: 12%; opacity: 0.08; }

.hero-inner {
  position: relative;
  display: grid;
  gap: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 18px;
}
.eyebrow.dark { color: var(--gold-600); }

.pulse-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--whatsapp);
  position: relative;
  flex-shrink: 0;
}
.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: var(--whatsapp);
  opacity: 0.5;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(0.6); opacity: 0.6; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

.hero h1 {
  font-size: clamp(2.25rem, 9vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.5px;
  max-width: 13ch;
}
.hero h1 em { font-style: italic; color: var(--gold-300); }
.gold-text {
  background: linear-gradient(120deg, var(--gold-200), var(--gold-400) 55%, var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin-top: 20px;
  max-width: 54ch;
  color: rgba(247,242,233,0.82);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(247,242,233,0.16);
}
.stars { display: inline-flex; gap: 2px; }
.hero-trust p { font-size: 0.85rem; color: rgba(247,242,233,0.75); }
.hero-trust p strong { color: var(--cream); }

.hero-visual { position: relative; }
.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.12);
  aspect-ratio: 4 / 4.4;
  max-height: 560px;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }

.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(6px);
  max-width: calc(100% - 32px);
}
.hero-float strong { font-size: 0.95rem; display: block; line-height: 1.2; }
.hero-float small { font-size: 0.76rem; color: var(--muted); }
.hero-float-1 { top: 14px; left: 12px; }
.hero-float-2 { bottom: 16px; right: 12px; }
.float-ico {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal-100);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.float-ico-gold { background: var(--gold-300); }

/* ---------- Stats ---------- */
.stats {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.stat {
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat:nth-child(2n) { border-right: 0; }
.stat strong {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--teal-700);
  line-height: 1;
}
.stat-star { color: var(--gold-500); font-size: 1.2rem; }
.stat span { font-size: 0.8rem; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: clamp(3.6rem, 10vw, 6.5rem) 0; }

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { justify-content: center; }

.section-title {
  font-size: clamp(1.7rem, 5.6vw, 2.5rem);
  letter-spacing: -0.3px;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--teal-700); }
.accent-underline {
  position: relative;
  white-space: nowrap;
}
.accent-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-400));
  opacity: 0.45;
  z-index: -1;
}

.section-sub {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
}

/* ---------- About ---------- */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  gap: 44px;
  align-items: center;
}

.about-media { position: relative; }
.about-img-stack {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 14px;
  align-items: end;
}
.about-img-stack img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.about-img-stack .about-img-main { aspect-ratio: 4 / 4.6; }
.about-img-stack .about-img-side { aspect-ratio: 4 / 5; }

.about-badge {
  position: absolute;
  bottom: -20px;
  right: 8px;
  background: var(--green-900);
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.about-badge strong { font-family: var(--font-head); font-size: 1.15rem; display: block; color: var(--gold-300); line-height: 1.1; }
.about-badge small { font-size: 0.72rem; color: rgba(247,242,233,0.78); }

.about-copy .lead {
  font-size: 1.06rem;
  color: var(--ink-soft);
  margin: 6px 0 14px;
}
.about-copy > p:not(.lead):not(.eyebrow) { color: var(--muted); margin-bottom: 18px; }

.check-list { margin: 22px 0 30px; display: grid; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230D9488' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 12px no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Services ---------- */
.services { background: var(--white); }
.services-grid {
  display: grid;
  gap: 16px;
  margin-top: 42px;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-400);
}
.service-ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--green-900);
  color: var(--gold-300);
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}
.service-card h3 { font-size: 1.22rem; }
.service-card p { font-size: 0.92rem; color: var(--muted); flex: 1; }
.service-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal-700);
  background: var(--teal-100);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.service-card-wide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  background: var(--green-900);
  border-color: var(--green-800);
  color: var(--cream);
  overflow: hidden;
  padding: 0;
}
.service-wide-copy { padding: 26px 22px; display: flex; flex-direction: column; gap: 12px; }
.service-card-wide .eyebrow { margin-bottom: 0; }
.service-card-wide h3 { font-size: 1.5rem; }
.service-card-wide h3 em { font-style: italic; color: var(--gold-300); }
.service-card-wide p { color: rgba(247,242,233,0.8); }
.service-card-wide img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }

.specialists { display: grid; gap: 12px; margin-top: 8px; }
.specialist-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
}
.chip-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold-400);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(217,169,78,0.18);
}
.specialist-chip strong { display: block; font-size: 0.95rem; }
.specialist-chip small { font-size: 0.78rem; color: rgba(247,242,233,0.68); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background:
    radial-gradient(700px 300px at 90% 0%, rgba(13,148,136,0.4), transparent 60%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
  color: var(--cream);
  padding: clamp(3rem, 8vw, 4.5rem) 0;
}
.cta-inner { display: grid; gap: 28px; align-items: center; }
.cta-copy h2 { font-size: clamp(1.7rem, 5vw, 2.3rem); }
.cta-copy h2::before { content: ""; display: block; width: 54px; height: 4px; border-radius: 2px; background: var(--gold-400); margin-bottom: 16px; }
.cta-copy p { color: rgba(247,242,233,0.8); margin-top: 10px; max-width: 46ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--cream); }

.testimonials-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  margin-top: 34px;
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.ts-rating { display: flex; align-items: center; gap: 16px; }
.ts-big { font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--gold-600); line-height: 1; }
.ts-rating small { font-size: 0.8rem; color: var(--muted); display: block; margin-top: 6px; }
.ts-rating small strong { color: var(--ink-soft); }

.tabs {
  display: flex;
  gap: 8px;
  margin-top: 26px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  flex-shrink: 0;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s var(--ease);
}
.tab-btn:hover { border-color: var(--gold-400); }
.tab-btn.active {
  background: var(--green-900);
  border-color: var(--green-900);
  color: var(--gold-300);
}

.testimonials-grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), opacity 0.25s var(--ease);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial-card.is-hidden { display: none; }

.t-quote svg { opacity: 0.55; }
.t-text { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.62; }
.t-stars { display: inline-flex; gap: 2px; }
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.t-author strong { display: block; font-size: 0.95rem; }
.t-author small { font-size: 0.78rem; color: var(--muted); }

/* ---------- Gallery ---------- */
.gallery { background: var(--white); }
.gallery-tabs { margin-top: 34px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.gallery-item.is-hidden { display: none; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,31,27,0.78));
}
.gallery-item figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  color: var(--cream);
  font-weight: 600;
  font-size: 0.82rem;
  line-height: 1.3;
}
.gallery-grid.gallery-single {
  grid-template-columns: 1fr;
  justify-items: center;
}
.gallery-grid.gallery-single .gallery-item { width: 100%; max-width: 520px; }
.gallery-more {
  margin-top: 26px;
  text-align: center;
}
.gallery-more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-600);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border-bottom: 2px solid var(--gold-400);
  padding-bottom: 2px;
  transition: color 0.2s var(--ease);
}
.gallery-more a:hover { color: var(--green-900); }

/* ---------- Campaign ---------- */
.campaign {
  background:
    radial-gradient(1200px 520px at 85% -10%, rgba(0,120,192,0.06), transparent 60%),
    radial-gradient(900px 480px at -10% 110%, rgba(217,169,78,0.12), transparent 55%),
    var(--cream);
}
.campaign-layout {
  display: grid;
  gap: 40px;
  align-items: center;
}
.campaign-media {
  position: relative;
  justify-self: center;
  width: min(340px, 100%);
}
.campaign-poster {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 10px solid var(--white);
  outline: 1px solid var(--line);
  background: var(--white);
}
.campaign-poster::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid var(--gold-400);
  border-radius: var(--radius-md);
  pointer-events: none;
}
.campaign-poster img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-md) - 4px);
}
.campaign-sticker {
  position: absolute;
  right: -12px;
  top: -14px;
  z-index: 2;
  background: var(--gold-400);
  color: var(--green-950);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  transform: rotate(4deg);
  box-shadow: var(--shadow-md);
}
.campaign-eyebrow { color: #0078C0; }
.campaign-claim {
  margin-top: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.1;
  color: #0078C0;
}
.campaign-text {
  margin-top: 16px;
  color: var(--ink-soft);
  line-height: 1.66;
}
.campaign-list { margin-top: 20px; }
.campaign-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

@media (min-width: 768px) {
  .campaign-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
  }
  .campaign-media { justify-self: start; }
  .campaign-claim { font-size: 2.6rem; }
}

/* ---------- Location ---------- */
.location { background: var(--cream); }

.location-layout {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 320px;
  border: 1px solid var(--line);
}
.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-pin-card {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  max-width: calc(100% - 28px);
}
.pin-ico {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--gold-300);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.map-pin-card strong { display: block; font-size: 0.95rem; line-height: 1.2; }
.map-pin-card small { font-size: 0.8rem; color: var(--muted); }

.map-recenter {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--green-900);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.map-recenter span { display: none; }
.map-recenter:hover,
.map-recenter:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  outline: none;
}
@media (min-width: 560px) {
  .map-recenter span { display: inline; }
}

.location-info { display: grid; gap: 12px; }
.loc-card {
  display: flex;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
  align-items: flex-start;
}
.loc-ico {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--teal-100);
  color: var(--teal-700);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.loc-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.loc-card p { font-size: 0.9rem; color: var(--muted); }
.loc-card p a { color: var(--teal-700); font-weight: 600; }
.hours-line strong { color: var(--teal-700); }
.hours-open {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #0A7A3D;
  background: #D9F2E2;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.loc-actions { display: grid; gap: 10px; }

.hours-strip {
  margin-top: 26px;
  background: var(--green-900);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-md);
}
.hours-strip-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.hours-strip-head h3 { font-size: 1.2rem; }
.hours-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 20px; }
.hours-grid li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.88rem;
}
.hours-grid li span { color: rgba(247,242,233,0.72); }
.hours-grid li strong { color: var(--gold-300); }

/* ---------- Contact ---------- */
.contact { background: var(--white); }
.contact-inner {
  background:
    radial-gradient(600px 260px at 100% 0%, rgba(13,148,136,0.25), transparent 60%),
    var(--green-950);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 7vw, 4rem);
  display: grid;
  gap: 30px;
}
.contact-inner .section-title { color: var(--cream); }
.contact-copy > p:last-child { color: rgba(247,242,233,0.78); margin-top: 12px; max-width: 46ch; }

.contact-actions { display: grid; gap: 12px; }
.contact-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  min-height: 64px;
  transition: background 0.2s var(--ease), border-color 0.2s, transform 0.2s var(--ease);
}
.contact-chip:hover { background: rgba(255,255,255,0.13); border-color: var(--gold-400); transform: translateY(-2px); }
.chip-ico {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--teal-600);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.chip-ico-wa { background: var(--whatsapp); color: #063B1E; }
.chip-ico-ig { background: linear-gradient(45deg, #f09433, #e6683c 40%, #dc2743 70%, #cc2366); color: #fff; }
.contact-chip strong { display: block; font-size: 1rem; }
.contact-chip small { font-size: 0.8rem; color: rgba(247,242,233,0.68); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-950);
  color: rgba(247,242,233,0.75);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  gap: 36px;
  padding-bottom: 40px;
}
.brand-footer .brand-text strong { color: var(--cream); }
.brand-footer .brand-text small { color: rgba(247,242,233,0.6); }
.footer-brand p { margin-top: 16px; font-size: 0.9rem; max-width: 34ch; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  color: var(--cream);
  transition: background 0.2s, color 0.2s, transform 0.2s var(--ease);
}
.footer-social a:hover { background: var(--teal-600); color: #fff; transform: translateY(-2px); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 10px; font-size: 0.92rem; }
.footer-col ul a { transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold-300); }

.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { flex-shrink: 0; margin-top: 3px; color: var(--gold-400); }
.footer-contact a:hover { color: var(--gold-300); }

.footer-note p { font-size: 0.9rem; margin-bottom: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(247,242,233,0.5);
}

/* ---------- Floating / Mobile bars ---------- */
.fab-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #063B1E;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s var(--ease), background 0.2s;
  animation: fab-in 0.6s var(--ease) 0.4s both;
}
.fab-whatsapp:hover { transform: translateY(-4px) scale(1.05); background: #2CE079; }
@keyframes fab-in {
  from { transform: translateY(30px) scale(0.6); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.mobile-bar {
  display: none;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.in-view { opacity: 1; transform: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (min-width: 560px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat { border-bottom: 0; }
  .stat:nth-child(2n) { border-right: 1px solid var(--line); }
  .stat:last-child { border-right: 0; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .hours-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-actions { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  :root { --header-h: 80px; }
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 48px; }
  .hero { padding: calc(var(--header-h) + 64px) 0 80px; }
  .hero-card { aspect-ratio: 4 / 4.7; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .location-layout { grid-template-columns: 1.15fr 0.85fr; align-items: stretch; }
  .map-wrap { min-height: 100%; }
  .loc-actions { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-inner { grid-template-columns: 1fr 1.2fr; align-items: center; }
  .footer-grid { grid-template-columns: 1.4fr 0.8fr 1fr 1fr; }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card-wide { grid-column: span 3; grid-template-columns: 1.1fr 1fr; }
  .service-card-wide img { min-height: 100%; }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid:has(.testimonial-card:only-child) { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .hours-strip { padding: 30px 34px; }
  .fab-whatsapp { display: none; }
}

@media (max-width: 1023px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(84vw, 360px);
    background: var(--green-950);
    z-index: 1200;
    padding: 90px 28px 34px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,0.4);
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 6px; }
  .nav-link { font-size: 1.1rem; padding: 14px 12px; }
  .nav-toggle { display: flex; }
  .nav-close {
    display: grid;
    place-items: center;
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255,255,255,0.08);
    color: var(--cream);
    border: 0;
    border-radius: 50%;
    width: 46px;
    height: 46px;
  }
  .nav-cta { margin-top: 18px; }
  .nav-scrim {
    position: fixed;
    inset: 0;
    background: rgba(5, 14, 12, 0.6);
    backdrop-filter: blur(3px);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
  }
  .nav-scrim.show { opacity: 1; pointer-events: auto; }

  body.menu-open { overflow: hidden; }

  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 950;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(10, 31, 27, 0.97);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 62px;
    color: rgba(247,242,233,0.8);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.3px;
  }
  .mobile-bar a.bar-wa { color: #2CE079; }
  .mobile-bar a:active { background: rgba(255,255,255,0.08); }

  .fab-whatsapp { bottom: 86px; right: 16px; width: 56px; height: 56px; }

  body { padding-bottom: 62px; }
  body:has(.mobile-bar) .site-footer { padding-bottom: 62px; }
}

@media (min-width: 1024px) {
  .container { padding-inline: 32px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
