/* PET'S DAY v18.1 - CSS CONSOLIDADO */

/* === ABOVE-THE-FOLD CRITICAL === */
/* ==========================================================
   PET'S DAY v18 — CSS CRÍTICO INLINE (above-the-fold)
   Tudo necessário para a primeira pintura: tokens, reset,
   tipografia base, header sticky, hero, sticky CTA bar.
   ========================================================== */

/* === FONT-FACE (self-hosted, font-display: swap) === */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/plus-jakarta-sans-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/plus-jakarta-sans-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/plus-jakarta-sans-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/plus-jakarta-sans-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/fraunces-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/fraunces-latin-700-normal.woff2') format('woff2');
}

/* === DESIGN TOKENS === */
:root {
  --teal-50:  #E9F7F9;
  --teal-100: #C8EBEF;
  --teal-300: #5BC2CE;
  --teal-500: #1FA8B5;
  --teal-600: #178A95;
  --teal-700: #126571;
  --teal-900: #0B404A;

  --orange-300: #FCC069;
  --orange-400: #F5A623;
  --orange-500: #E18C0A;
  --orange-600: #BF7613;

  --cream-50:  #FCFAF5;
  --cream-100: #F6EFE0;

  --coal-900: #1B2026;
  --coal-700: #3D4651;
  --coal-600: #515A65;
  --coal-500: #6B7280;
  --coal-300: #B6BCC4;
  --coal-200: #D4D8DD;
  --coal-100: #E6E9EE;
  --coal-50:  #F1F3F6;

  --whatsapp: #25D366;
  --whatsapp-dark: #1FAE54;
  --whatsapp-darker: #128C7E;

  --white: #FFFFFF;

  /* Tipografia */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Métricas */
  --header-height: 64px;
  --sticky-bar-height: 64px;
  --maxw-content: 1180px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Sombras Material 3 */
  --shadow-1: 0 1px 2px rgba(15, 27, 38, 0.06), 0 1px 3px rgba(15, 27, 38, 0.04);
  --shadow-2: 0 2px 6px rgba(15, 27, 38, 0.08), 0 1px 2px rgba(15, 27, 38, 0.05);
  --shadow-3: 0 4px 16px rgba(15, 27, 38, 0.10), 0 2px 6px rgba(15, 27, 38, 0.06);
  --shadow-up: 0 -2px 12px rgba(15, 27, 38, 0.10);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
/* Resolve âncoras cortadas pelo header sticky */
[id] { scroll-margin-top: calc(var(--header-height) + 16px); }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--coal-700);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* Reserva espaço para sticky bar no mobile (evita CLS) */
  padding-bottom: 0;
}

img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
a { color: var(--teal-600); text-decoration: none; }
a:hover { color: var(--teal-700); }

/* === SKIP LINK (CRÍTICO — escondido por padrão, evita flash) === */
.skip-link {
  position: fixed;
  top: -200px;
  left: 8px;
  z-index: 9999;
  padding: 10px 16px;
  background: var(--coal-900);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: top 0.18s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 8px;
  outline: 2px solid var(--orange-400);
  outline-offset: 2px;
}

/* === CONTAINER === */
.container {
  max-width: var(--maxw-content);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

/* === PROMO BAR TOPO === */
.promo-bar {
  background: linear-gradient(95deg, var(--teal-700) 0%, var(--teal-500) 100%);
  color: var(--white);
  padding: 8px 12px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 500;
  position: relative;
  z-index: 50;
}
.promo-bar a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.promo-bar a:hover { color: var(--cream-100); }
.promo-bar__close {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  line-height: 1;
  border-radius: 999px;
}
.promo-bar__close:hover { background: rgba(255,255,255,0.15); color: var(--white); }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(252, 250, 245, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--coal-100);
  height: var(--header-height);
}
.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--coal-900);
  font-weight: 700;
  font-size: 17px;
}
.brand__logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--teal-100);
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand__tag {
  font-size: 11px;
  color: var(--coal-500);
  font-weight: 500;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 22px;
}
.nav-desktop a {
  color: var(--coal-700);
  font-weight: 500;
  font-size: 14.5px;
  transition: color 0.15s;
}
.nav-desktop a:hover { color: var(--teal-600); }

.header-cta {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-1);
  transition: background 0.15s, transform 0.15s;
}
.header-cta:hover { background: var(--whatsapp-dark); color: var(--white); transform: translateY(-1px); }
.header-cta svg { width: 16px; height: 16px; }

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--coal-900);
}
.nav-toggle:hover { background: var(--coal-50); }
.nav-toggle svg { width: 24px; height: 24px; }

@media (min-width: 980px) {
  .nav-desktop { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* === HERO === */
.hero {
  padding: clamp(20px, 4vw, 48px) 0 clamp(24px, 5vw, 56px);
  background: linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
}
@media (min-width: 880px) {
  .hero__grid { grid-template-columns: 1.05fr 1fr; }
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--coal-100);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--coal-700);
  box-shadow: var(--shadow-1);
}
.hero__badge--rating { color: var(--orange-600); }
.hero__badge svg { width: 14px; height: 14px; flex-shrink: 0; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 7.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--coal-900);
  margin-bottom: 14px;
}
.hero__title em {
  font-style: normal;
  color: var(--teal-600);
  position: relative;
  display: inline-block;
}
.hero__title em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 6px;
  background: var(--orange-400);
  opacity: 0.35;
  border-radius: 2px;
  z-index: -1;
}

.hero__sub {
  font-size: clamp(15px, 2.4vw, 17px);
  line-height: 1.55;
  color: var(--coal-600);
  margin-bottom: 22px;
  max-width: 520px;
}
.hero__sub strong { color: var(--coal-900); font-weight: 600; }

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
@media (min-width: 480px) {
  .hero__ctas { flex-direction: row; align-items: stretch; flex-wrap: wrap; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  min-height: 54px;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s;
  text-align: center;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.98); }
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.btn--primary:hover { background: var(--whatsapp-dark); color: var(--white); box-shadow: var(--shadow-3); }
.btn--secondary {
  background: var(--white);
  color: var(--coal-900);
  border: 1.5px solid var(--coal-200);
}
.btn--secondary:hover { border-color: var(--teal-500); color: var(--teal-700); }
.btn--full { width: 100%; }
.btn--lg { padding: 16px 26px; font-size: 17px; min-height: 60px; }

.hero__proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 4px;
}
.hero__proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--coal-100);
  border-radius: 10px;
  font-size: 13px;
  color: var(--coal-700);
  font-weight: 500;
}
.hero__proof-item svg {
  width: 16px;
  height: 16px;
  color: var(--teal-500);
  flex-shrink: 0;
}

.hero__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  background: var(--coal-100);
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 6px 12px;
  background: rgba(27, 32, 38, 0.78);
  color: var(--white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* === BELOW-THE-FOLD === */
/* ==========================================================
   CSS NÃO-CRÍTICO (below-the-fold)
   Cards de serviço, ofertas, galeria, FAQ, footer, modais.
   Carregado inline mas após o crítico para garantir LCP rápido.
   ========================================================== */

/* === SEÇÕES BASE === */
section { padding: clamp(48px, 8vw, 88px) 0; scroll-margin-top: 80px; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(28px, 5vw, 48px);
}
.section-eyebrow {
  display: inline-block;
  padding: 5px 14px;
  background: var(--teal-50);
  color: var(--teal-700);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--coal-900);
  margin-bottom: 14px;
}
.section-sub {
  font-size: clamp(15px, 2.2vw, 17px);
  color: var(--coal-600);
  max-width: 600px;
  margin: 0 auto;
}

/* === SERVICE CARDS GRID === */
.services {
  background: var(--white);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--coal-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-3);
  border-color: var(--teal-300);
}
.service-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--coal-100);
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card__media img { transform: scale(1.04); }

.service-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.service-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.2;
  color: var(--coal-900);
}
.service-card__desc {
  font-size: 14.5px;
  color: var(--coal-600);
  line-height: 1.5;
  flex: 1;
}
.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  margin-top: 4px;
  align-self: flex-start;
  background: var(--teal-50);
  color: var(--teal-700);
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
  min-height: 44px;
}
.service-card__cta:hover { background: var(--teal-100); color: var(--teal-700); }
.service-card__cta svg { width: 14px; height: 14px; }

/* === DIFERENCIAIS === */
.differentials {
  background: var(--cream-50);
}
.differentials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.diff-card {
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--coal-100);
  box-shadow: var(--shadow-1);
}
.diff-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--teal-50);
  color: var(--teal-600);
  border-radius: 10px;
  margin-bottom: 12px;
}
.diff-card__icon svg { width: 22px; height: 22px; }
.diff-card__title {
  font-weight: 700;
  font-size: 16px;
  color: var(--coal-900);
  margin-bottom: 6px;
}
.diff-card__desc {
  font-size: 14px;
  color: var(--coal-600);
  line-height: 1.5;
}

/* === OFFERS (oferta dupla: avulso + plano) === */
.offers {
  background: linear-gradient(180deg, var(--cream-100) 0%, var(--cream-50) 100%);
  position: relative;
  overflow: hidden;
}
.offers::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(31,168,181,0.10), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.offers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (min-width: 760px) {
  .offers__grid { grid-template-columns: 1fr 1.05fr; align-items: stretch; }
}

.offer-card {
  background: var(--white);
  border: 1.5px solid var(--coal-100);
  border-radius: var(--radius-xl);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
}
.offer-card:active { transform: scale(0.99); }

.offer-card--featured {
  border: 2.5px solid var(--teal-500);
  box-shadow: 0 8px 28px rgba(31, 168, 181, 0.18), 0 2px 8px rgba(15, 27, 38, 0.08);
  background: linear-gradient(180deg, var(--white) 0%, #FBFEFE 100%);
}

.offer-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: var(--teal-500);
  color: var(--white);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(31, 168, 181, 0.30);
}

.offer-card__label {
  display: inline-block;
  padding: 4px 10px;
  background: var(--teal-50);
  color: var(--teal-700);
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  align-self: flex-start;
}
.offer-card--featured .offer-card__label {
  background: var(--orange-400);
  color: var(--white);
}

.offer-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.15;
  color: var(--coal-900);
  margin-bottom: 6px;
}
.offer-card__lead {
  font-size: 14.5px;
  color: var(--coal-600);
  line-height: 1.5;
  margin-bottom: 18px;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.offer-price__currency { font-size: 18px; color: var(--coal-700); font-weight: 600; }
.offer-price__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  color: var(--coal-900);
  letter-spacing: -0.02em;
}
.offer-price__suffix { font-size: 14px; color: var(--coal-600); font-weight: 500; }
.offer-price__star {
  display: inline-block;
  vertical-align: super;
  font-size: 16px;
  color: var(--teal-500);
  margin-left: 2px;
}

.offer-price__detail {
  font-size: 14px;
  color: var(--coal-600);
  margin-bottom: 16px;
  line-height: 1.4;
}
.offer-price__highlight {
  font-weight: 700;
  color: var(--teal-700);
}

.offer-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14.5px;
  color: var(--coal-700);
  line-height: 1.45;
}
.offer-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%231FA8B5"><path d="M16.7 5.3a1 1 0 0 1 0 1.4l-7 7a1 1 0 0 1-1.4 0l-4-4a1 1 0 1 1 1.4-1.4L9 11.6l6.3-6.3a1 1 0 0 1 1.4 0z"/></svg>') no-repeat center / contain;
}

.offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  min-height: 54px;
  transition: all 0.15s;
  width: 100%;
}
.offer-cta--primary {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.offer-cta--primary:hover {
  background: var(--whatsapp-dark);
  color: var(--white);
  box-shadow: var(--shadow-3);
  transform: translateY(-1px);
}
.offer-cta--outline {
  background: var(--white);
  color: var(--coal-900);
  border: 1.5px solid var(--coal-200);
}
.offer-cta--outline:hover { border-color: var(--teal-500); color: var(--teal-700); }
.offer-cta:active { transform: scale(0.98); }
.offer-cta svg { width: 16px; height: 16px; }

.offer-fineprint {
  margin-top: 14px;
  padding: 10px 12px;
  background: var(--coal-50);
  border-radius: 8px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--coal-600);
}
.offer-fineprint strong { color: var(--coal-700); font-weight: 600; }
.offer-fineprint__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  color: var(--teal-600);
  font-weight: 600;
  font-size: 12.5px;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.offer-fineprint__more:hover { color: var(--teal-700); }

/* === SOBRE === */
.about {
  background: var(--white);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
}
@media (min-width: 880px) {
  .about__grid { grid-template-columns: 1fr 1.05fr; }
}
.about__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  background: var(--coal-100);
}
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.15;
  color: var(--coal-900);
  margin-bottom: 16px;
  letter-spacing: -0.018em;
}
.about p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--coal-700);
  margin-bottom: 14px;
}

/* === GALERIA === */
.gallery {
  background: var(--cream-50);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
}
@media (min-width: 640px) {
  .gallery__grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
}
.gallery__item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--coal-100);
  cursor: pointer;
  transition: transform 0.18s;
}
.gallery__item:hover { transform: scale(1.02); }
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}

/* === REVIEWS === */
.reviews {
  background: var(--white);
}
.reviews__summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.reviews__rating {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.reviews__rating-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--coal-900);
}
.reviews__rating-max { font-size: 18px; color: var(--coal-500); font-weight: 500; }
.reviews__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--orange-400);
}
.reviews__stars svg { width: 22px; height: 22px; }
.reviews__count {
  font-size: 14.5px;
  color: var(--coal-600);
  font-weight: 500;
}
.reviews__count strong { color: var(--coal-900); font-weight: 700; }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
.review-card {
  background: var(--cream-50);
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid var(--coal-100);
}
.review-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.review-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-300), var(--teal-500));
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.review-card__name {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--coal-900);
  line-height: 1.2;
}
.review-card__date {
  font-size: 12px;
  color: var(--coal-500);
}
.review-card__stars {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 8px;
  color: var(--orange-400);
}
.review-card__stars svg { width: 14px; height: 14px; }
.review-card__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--coal-700);
}
.reviews__cta-wrap {
  text-align: center;
  margin-top: 28px;
}
.reviews__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--white);
  color: var(--coal-900);
  border: 1.5px solid var(--coal-200);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  transition: border-color 0.15s, color 0.15s;
}
.reviews__cta-link:hover { border-color: var(--teal-500); color: var(--teal-700); }

/* === FAQ === */
.faq {
  background: var(--cream-50);
}
.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--coal-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.faq-item[open] {
  border-color: var(--teal-300);
  box-shadow: var(--shadow-2);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--coal-900);
  line-height: 1.35;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--teal-50);
  color: var(--teal-600);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.15s;
}
.faq-item[open] summary::after { transform: rotate(45deg); background: var(--teal-100); }
.faq-item__body {
  padding: 0 22px 20px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--coal-600);
}
.faq-item__body p { margin-bottom: 8px; }
.faq-item__body p:last-child { margin-bottom: 0; }

/* === LOCALIZAÇÃO === */
.location {
  background: var(--white);
}
.location__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 880px) {
  .location__grid { grid-template-columns: 1.1fr 1fr; align-items: start; }
}
.location__map {
  aspect-ratio: 16/11;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--coal-100);
}
.location__map iframe { width: 100%; height: 100%; border: 0; }
.location__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.location__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--cream-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--coal-100);
}
.location__row svg {
  width: 22px;
  height: 22px;
  color: var(--teal-500);
  flex-shrink: 0;
  margin-top: 2px;
}
.location__row h3 {
  font-size: 13px;
  color: var(--coal-500);
  font-weight: 600;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.location__row p, .location__row a {
  font-size: 15.5px;
  color: var(--coal-900);
  font-weight: 500;
  line-height: 1.4;
}
.location__row a:hover { color: var(--teal-600); }


.cta-final {
  background: linear-gradient(135deg, var(--teal-700) 0%, var(--teal-500) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before, .cta-final::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 60%);
}
.cta-final::before { top: -80px; left: -60px; width: 280px; height: 280px; }
.cta-final::after { bottom: -100px; right: -80px; width: 360px; height: 360px; }
.cta-final__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-final__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--white);
}
.cta-final__sub {
  font-size: clamp(15px, 2.2vw, 17px);
  color: rgba(255,255,255,0.92);
  margin-bottom: 30px;
}
.cta-final .reviews__summary {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  margin-bottom: 28px;
}
.cta-final .reviews__rating-num { color: var(--white); }
.cta-final .reviews__rating-max { color: rgba(255,255,255,0.75); }
.cta-final .reviews__count { color: rgba(255,255,255,0.92); }
.cta-final .reviews__count strong { color: var(--white); }

.cta-final__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--white);
  color: var(--whatsapp-darker);
  border-radius: 14px;
  font-weight: 700;
  font-size: 17px;
  min-height: 62px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  transition: transform 0.15s, box-shadow 0.15s;
}
.cta-final__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.24);
  color: var(--whatsapp-darker);
}
.cta-final__btn:active { transform: scale(0.98); }
.cta-final__btn svg { width: 22px; height: 22px; color: var(--whatsapp); }
.cta-final__hint {
  margin-top: 16px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
}

/* === FOOTER === */
.site-footer {
  background: var(--coal-900);
  color: rgba(255,255,255,0.78);
  padding: 44px 0 20px;
  font-size: 14px;
  line-height: 1.6;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 32px;
}
@media (min-width: 720px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer__brand-name {
  font-family: var(--font-display);
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}
.footer h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 6px; }
.footer a {
  color: rgba(255,255,255,0.78);
  transition: color 0.15s;
}
.footer a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
}
.footer__legal a {
  color: rgba(255,255,255,0.65);
  margin-left: 12px;
}
.footer__legal a:hover { color: var(--white); }
.footer__legal button {
  color: rgba(255,255,255,0.65);
  text-decoration: underline;
  margin-left: 12px;
  background: 0;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-size: inherit;
}
.footer__legal button:hover { color: var(--white); }

/* === UTILITY === */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

/* === ACESSIBILIDADE — reduced motion === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}/* ==========================================================
   PET'S DAY v18.2 — CSS COMPLEMENTAR
   Regras para todas as classes do HTML que ainda não tinham
   estilo aplicado. Anexado ao final do styles.css.
   ========================================================== */

/* === RESET DE LISTAS ESPECÍFICAS === */
ul, ol { list-style: none; padding-left: 0; margin: 0; }

/* === BOTÕES (variantes adicionais) === */
.btn--sm { padding: 8px 16px; font-size: 13.5px; min-height: 36px; }
.btn--lg { padding: 14px 24px; font-size: 16px; min-height: 52px; }
.btn--xl {
  padding: 18px 32px;
  font-size: 17px;
  min-height: 60px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.30);
}
.btn--full { width: 100%; justify-content: center; }
.btn--ghost {
  background: transparent;
  color: var(--teal-600);
  border: 1.5px solid var(--teal-300);
}
.btn--ghost:hover {
  background: var(--teal-50);
  color: var(--teal-700);
  border-color: var(--teal-500);
}

/* === HERO COMPLEMENTOS === */
.hero__content { display: block; }
.hero__lead {
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  color: var(--coal-600);
  line-height: 1.55;
  margin-bottom: 22px;
  max-width: 540px;
}
.hero__proofs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 22px;
  padding: 0;
  list-style: none;
}
.hero__proofs li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: var(--coal-700);
  font-weight: 500;
}
.hero__proofs li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--teal-500);
}

/* === GRID DE SERVIÇOS === */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (min-width: 980px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); gap: 26px; }
}

/* === CARD DE SERVIÇO === */
.svc-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.svc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.08);
}
.svc-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-100);
}
.svc-card__media picture,
.svc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--coal-900);
  margin-bottom: 8px;
  line-height: 1.25;
}
.svc-card__desc {
  font-size: 14.5px;
  color: var(--coal-600);
  line-height: 1.55;
  margin-bottom: 14px;
}
.svc-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.svc-card__features li {
  display: inline-block;
  padding: 4px 10px;
  background: var(--teal-50);
  color: var(--teal-700);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
}
.svc-card__cta {
  margin-top: auto;
  color: var(--teal-600);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  transition: color 0.15s, gap 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.svc-card__cta:hover { color: var(--teal-700); gap: 8px; }

/* === SEÇÕES VARIANTES === */
.section--cream { background: var(--cream-100); }
.section--soft  { background: #F7F6F2; }
.section--cta {
  background: linear-gradient(135deg, var(--teal-50) 0%, var(--cream-50) 100%);
  padding: clamp(56px, 9vw, 96px) 0;
}

/* === DIFERENCIAIS === */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .diff-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
.diff-card {
  background: var(--white);
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.diff-card__emoji {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.diff-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--coal-900);
  margin-bottom: 6px;
  line-height: 1.3;
}
.diff-card__desc {
  font-size: 14.5px;
  color: var(--coal-600);
  line-height: 1.55;
}

/* === SOBRE === */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 880px) {
  .sobre-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}
.sobre-content p {
  margin-bottom: 14px;
  font-size: 16px;
  color: var(--coal-600);
  line-height: 1.65;
}
.sobre-content .section-eyebrow { margin-bottom: 14px; }
.sobre-content .section-title { margin-bottom: 18px; text-align: left; }
.sobre-content .btn { margin-top: 12px; }
.sobre-media {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
}
.sobre-media picture, .sobre-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* === GALERIA === */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (min-width: 640px) {
  .gallery { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}
@media (min-width: 980px) {
  .gallery { grid-template-columns: repeat(4, 1fr); gap: 12px; }
}
.gallery__cell {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1/1;
  transition: transform 0.15s, box-shadow 0.15s;
}
.gallery__cell:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.gallery__cell picture, .gallery__cell img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* === REVIEWS === */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
.review-card {
  background: var(--white);
  padding: 22px;
  border-radius: 14px;
  border: 1px solid var(--coal-100);
}
.review-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-700);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.review-card__author strong {
  display: block;
  color: var(--coal-900);
  font-size: 14.5px;
  line-height: 1.2;
}
.review-card__author span {
  font-size: 12.5px;
  color: var(--coal-500);
}
.review-card__stars {
  color: var(--orange-400);
  font-size: 15px;
  letter-spacing: 1px;
}
.review-card__body {
  font-size: 14.5px;
  color: var(--coal-700);
  line-height: 1.6;
  font-style: italic;
}

/* === OFERTAS — CARDS DIFERENCIADOS === */
.ofertas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 880px;
  margin: 0 auto;
}
@media (min-width: 760px) {
  .ofertas-grid { grid-template-columns: 1fr 1.05fr; gap: 26px; align-items: stretch; }
}

/* Card base */
.oferta-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

/* Card AVULSO (secundário, outline) */
.oferta-card--avulso {
  border: 1.5px solid var(--coal-100);
  background: var(--white);
}

/* Card PLANO (destacado, sombra Material 3 elevation 3, borda accent) */
.oferta-card--plano {
  border: 2.5px solid var(--teal-500);
  box-shadow: 0 4px 12px rgba(31,168,181,0.12),
              0 8px 28px rgba(31,168,181,0.08);
  padding-top: 36px;
}

/* Badge sobreposto à borda do card destacado */
.oferta-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(95deg, var(--orange-400) 0%, #E89515 100%);
  color: var(--white);
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.32);
  white-space: nowrap;
}

.oferta-card__head { text-align: center; margin-bottom: 18px; }
.oferta-card__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-700);
  margin-bottom: 6px;
}
.oferta-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--coal-900);
  line-height: 1.2;
}

.oferta-card__price {
  text-align: center;
  margin-bottom: 18px;
  padding: 16px 0;
  border-top: 1px dashed var(--coal-100);
  border-bottom: 1px dashed var(--coal-100);
}
.oferta-card__price-from {
  display: block;
  font-size: 13px;
  color: var(--coal-500);
  font-weight: 500;
  margin-bottom: 4px;
}
.oferta-card__price-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 3rem);
  font-weight: 700;
  color: var(--teal-700);
  line-height: 1;
  margin: 4px 0;
}
.oferta-card__price-star {
  font-size: 0.4em;
  vertical-align: super;
  color: var(--orange-600);
  margin-left: 2px;
}
.oferta-card__price-note {
  display: block;
  font-size: 14px;
  color: var(--coal-700);
  font-weight: 600;
}

.oferta-card__regular {
  background: var(--cream-100);
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: 13.5px;
  color: var(--coal-700);
  line-height: 1.5;
  text-align: center;
}
.oferta-card__regular strong { color: var(--coal-900); }
.oferta-card__regular em {
  display: block;
  margin-top: 4px;
  color: var(--teal-700);
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
}

.oferta-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}
.oferta-card__features li {
  padding: 7px 0 7px 26px;
  position: relative;
  font-size: 14.5px;
  color: var(--coal-700);
  line-height: 1.45;
}
.oferta-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 7px;
  width: 18px;
  height: 18px;
  background: var(--teal-50);
  color: var(--teal-700);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.oferta-card__features--strong li::before {
  background: var(--teal-500);
  color: var(--white);
}

.oferta-card .btn { margin-bottom: 14px; }

.oferta-card__fine {
  font-size: 12.5px;
  color: var(--coal-500);
  line-height: 1.5;
  text-align: center;
  margin: 0;
}
.oferta-card__fine strong { color: var(--coal-700); }
.oferta-card__terms-link {
  display: inline-block;
  margin-top: 6px;
  background: none;
  border: 0;
  color: var(--teal-600);
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  padding: 4px;
}
.oferta-card__terms-link:hover { color: var(--teal-700); }

/* === FAQ === */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--coal-100);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.faq-item[open] {
  border-color: var(--teal-300);
  box-shadow: 0 2px 8px rgba(31,168,181,0.06);
}
.faq-item__q {
  padding: 16px 18px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--coal-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  line-height: 1.4;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--teal-500);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-item[open] .faq-item__q::after { content: "−"; }
.faq-item__a {
  padding: 0 18px 16px 18px;
  font-size: 14.5px;
  color: var(--coal-600);
  line-height: 1.65;
}

/* === LOCALIZAÇÃO === */
.local-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 880px) {
  .local-grid { grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: stretch; }
}
.local-info .section-eyebrow { margin-bottom: 12px; }
.local-info .section-title { text-align: left; margin-bottom: 18px; }
.local-address {
  font-style: normal;
  font-size: 16px;
  color: var(--coal-700);
  line-height: 1.6;
  margin-bottom: 18px;
}
.local-address strong { color: var(--coal-900); }
.local-hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  margin-bottom: 22px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: 10px;
}
.local-hours dt {
  color: var(--coal-700);
  font-weight: 600;
  font-size: 14px;
}
.local-hours dd {
  color: var(--coal-600);
  font-size: 14px;
  margin: 0;
}
.local-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 480px) {
  .local-ctas { flex-direction: row; flex-wrap: wrap; }
}
.local-map {
  border-radius: 14px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* === CTA FINAL === */
.cta-final {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-final__badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--white);
  color: var(--orange-600);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.5vw, 2.4rem);
  font-weight: 700;
  color: var(--coal-900);
  line-height: 1.15;
  margin-bottom: 14px;
}
.cta-final__lead {
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  color: var(--coal-600);
  margin-bottom: 26px;
  line-height: 1.5;
}
.cta-final .btn { margin-bottom: 14px; }
.cta-final__note {
  font-size: 13px;
  color: var(--coal-500);
  font-weight: 500;
}

/* === FOOTER === */
.site-footer {
  background: var(--coal-900);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr 1fr; }
}
.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.footer-brand strong {
  color: var(--white);
  font-size: 16.5px;
  display: block;
  margin-bottom: 6px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin: 0;
}
.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  flex-shrink: 0;
}
.footer-nav, .footer-contact, .footer-social {
  display: flex;
  flex-direction: column;
}
.footer-nav h4, .footer-contact h4, .footer-social h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.footer-nav a, .footer-contact a, .footer-social a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-nav a:hover, .footer-contact a:hover, .footer-social a:hover {
  color: var(--white);
}
.footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.70);
  line-height: 1.55;
  margin: 0 0 6px 0;
}
.footer-contact strong { color: rgba(255,255,255,0.92); }
.footer-social a svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-bottom__links {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-bottom__links a { color: rgba(255,255,255,0.75); }
.footer-bottom__btn {
  background: none;
  border: 0;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-bottom__btn:hover { color: var(--white); }

/* === MODAL === */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal[hidden] { display: none; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,27,38,0.55);
  backdrop-filter: blur(4px);
}
.modal__dialog {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  width: min(640px, 100%);
  max-height: 85vh;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.24);
  display: flex;
  flex-direction: column;
}
.modal__head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--coal-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.modal__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--coal-900);
  font-weight: 700;
  margin: 0;
}
.modal__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--coal-50);
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.modal__close:hover { background: var(--coal-100); }
.modal__close svg { width: 18px; height: 18px; color: var(--coal-700); }
.modal__body {
  padding: 22px;
  overflow-y: auto;
  font-size: 14.5px;
  color: var(--coal-700);
  line-height: 1.6;
  flex: 1;
}
.modal__body h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--coal-900);
  margin: 18px 0 8px;
  font-weight: 700;
}
.modal__body h4:first-child { margin-top: 0; }
.modal__body ul {
  padding-left: 20px;
  margin: 0 0 14px 0;
  list-style: disc;
}
.modal__body li {
  margin-bottom: 6px;
  line-height: 1.55;
}
.modal__body p { margin-bottom: 12px; }
.modal__body a { color: var(--teal-600); }
.modal__footer {
  padding: 14px 22px;
  border-top: 1px solid var(--coal-100);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  background: var(--white);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  max-width: 720px;
  margin: 0 auto;
}
.cookie-banner[hidden] { display: none; }
@media (max-width: 980px) {
  .cookie-banner {
    bottom: calc(72px + max(16px, env(safe-area-inset-bottom)));
  }
}
.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 640px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
}
.cookie-banner__text {
  margin: 0;
  font-size: 13.5px;
  color: var(--coal-700);
  line-height: 1.5;
}
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-prefs__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid var(--coal-100);
  border-radius: 10px;
  margin-bottom: 10px;
  background: var(--cream-50);
}
.cookie-prefs__toggle-text strong {
  display: block;
  color: var(--coal-900);
  margin-bottom: 2px;
  font-size: 14px;
}
.cookie-prefs__toggle-text span {
  font-size: 12.5px;
  color: var(--coal-600);
}
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 12px;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-switch span {
  position: absolute;
  inset: 0;
  background: var(--coal-300);
  border-radius: 999px;
  transition: background 0.2s;
  cursor: pointer;
}
.toggle-switch span::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.2s;
}
.toggle-switch input:checked + span { background: var(--teal-500); }
.toggle-switch input:checked + span::before { transform: translateX(20px); }
.toggle-switch input:disabled + span { background: var(--coal-300); cursor: not-allowed; }

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(15,27,38,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 96vw;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.50);
}
.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.18);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
}
.lightbox__close:hover { background: rgba(255,255,255,0.30); }
.lightbox__close svg { width: 24px; height: 24px; }

/* === SECTION SPACING / SCROLL ANCHORING === */
[id] { scroll-margin-top: 96px; }
section { padding: clamp(48px, 8vw, 88px) 0; }

/* === SECTION HEAD === */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(28px, 5vw, 48px);
}
.section-eyebrow {
  display: inline-block;
  padding: 5px 14px;
  background: var(--teal-50);
  color: var(--teal-700);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--coal-900);
  margin-bottom: 14px;
}
.section-lead {
  font-size: clamp(1rem, 2.3vw, 1.1rem);
  color: var(--coal-600);
  line-height: 1.55;
}

/* === UTILITY === */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

/* === LIST-STYLE NONE em main UL (não no modal) === */
main ul, main ol { list-style: none; }
main .modal__body ul { list-style: disc; }

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   PET'S DAY v20 — Overrides e correções
   ============================================================ */

/* === PROMO BAR ENRIQUECIDA (estrutura v18 com cor v19) === */
.promo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 50px 10px 16px;
  flex-wrap: wrap;
  text-align: center;
  font-size: 14px;
  line-height: 1.35;
}
.promo-bar__msg { display: inline-flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center; }
.promo-bar__sep { opacity: 0.5; }
.promo-bar__code {
  display: inline-block;
  padding: 2px 9px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 6px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.promo-bar__cta {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--teal-700) !important;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  text-decoration: none !important;
  font-size: 13.5px;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
}
.promo-bar__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  color: var(--teal-800) !important;
}
@media (max-width: 640px) {
  .promo-bar { padding: 10px 38px 10px 12px; font-size: 13px; gap: 10px; }
  .promo-bar__cta { padding: 5px 14px; font-size: 13px; }
}

/* === HEADER REORGANIZADO (logo grande + actions com "Aberto agora") === */
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__logo { width: 48px; height: 48px; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--coal-900);
  line-height: 1;
}
.brand__tag {
  font-size: 11.5px;
  color: var(--coal-500);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-top: 3px;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 22px;
}
@media (min-width: 1040px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  color: var(--coal-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 14.5px;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-desktop a:hover {
  color: var(--teal-700);
  border-bottom-color: var(--teal-500);
}
.nav-desktop__promo {
  color: var(--orange-500) !important;
  font-weight: 700 !important;
}
.nav-desktop__promo:hover {
  color: var(--orange-600) !important;
  border-bottom-color: var(--orange-400) !important;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Aberto agora badge */
.open-badge {
  display: none;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  background: var(--teal-50);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-700);
}
@media (min-width: 880px) {
  .open-badge { display: inline-flex; }
}
.open-badge__dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.20);
  animation: openPulse 2.2s ease-in-out infinite;
}
.open-badge--closed .open-badge__dot {
  background: #94A3B8;
  box-shadow: none;
  animation: none;
}
@keyframes openPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.20); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0.10); }
}

/* Header CTA (botão Agendar verde) — SEMPRE VISÍVEL em desktop */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #25D366;
  color: var(--white);
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(37,211,102,0.30);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.header-cta:hover {
  background: #1FAE52;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37,211,102,0.42);
}
.header-cta svg { width: 18px; height: 18px; }

@media (max-width: 740px) {
  .header-cta { padding: 8px 14px; font-size: 13.5px; }
  .header-cta span { display: none; }
  .brand__tag { display: none; }
  .brand__name { font-size: 1.15rem; }
  .brand__logo { width: 40px; height: 40px; }
}

/* Nav toggle (hambúrguer) — só aparece em mobile */
.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--teal-50);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  color: var(--teal-700);
  flex-shrink: 0;
}
.nav-toggle:hover { background: var(--teal-100); }
.nav-toggle svg { width: 22px; height: 22px; }
@media (min-width: 1040px) {
  .nav-toggle { display: none; }
}

/* === HERO: foto antes do texto em mobile (primeira dobra) === */
.hero {
  padding: clamp(20px, 3vw, 48px) 0 clamp(28px, 4vw, 56px);
  background: linear-gradient(135deg, var(--teal-50) 0%, #FCFAF5 60%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 880px) {
  .hero__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
  }
}

/* Mobile: foto vem ANTES do conteúdo (para aparecer na primeira dobra) */
@media (max-width: 879px) {
  .hero__media { order: -1; max-height: 280px; aspect-ratio: 16/10; border-radius: 18px; overflow: hidden; }
  .hero__media img { width: 100%; height: 100%; object-fit: cover; }
  .hero__title { font-size: clamp(1.6rem, 7vw, 2rem); margin-bottom: 12px; }
  .hero__lead { font-size: 0.98rem; margin-bottom: 16px; }
  .hero__ctas { flex-direction: column; gap: 10px; margin-bottom: 14px; }
  .hero__ctas .btn { width: 100%; }
  .hero__badges { gap: 6px 8px; margin-bottom: 14px; }
  .hero__badge { font-size: 12px; padding: 4px 11px; }
  .hero__proofs { gap: 8px 14px; padding-top: 14px; font-size: 13px; }
}

/* Desktop: foto cabe na primeira dobra mesmo com zoom 100% */
@media (min-width: 880px) {
  .hero__media { max-height: 520px; aspect-ratio: 4/5; border-radius: 22px; overflow: hidden; }
  .hero__media img { width: 100%; height: 100%; object-fit: cover; }
}

/* === BUG FIX: barra promo NÃO empurra hero === */
/* Promo bar deve ficar relative (não fixed/sticky), só o header é sticky */
.promo-bar { position: relative; }
body { padding-top: 0 !important; }

/* === BUG FIX: âncora #agendar (e demais) carrega corretamente === */
[id] { scroll-margin-top: 110px; }
@media (max-width: 740px) { [id] { scroll-margin-top: 88px; } }
#agendar { scroll-margin-top: 120px; }

/* === FONT SMOOTHING e tipografia (legibilidade v18) === */
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2A3038;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; }


/* ============================================================
   PET'S DAY v21 — Overrides finais
   - Promo bar LARANJA (v18)
   - Header minimalista (v18): logo+nome+nav simples, sem cores extras
   - "Aberto agora" + "Dúvidas" inseridos sem mudar visual
   - Mobile: sem CTA WhatsApp no header (igual v18)
   - Hero foto mobile: nova foto centralizada (hero-banho-v5)
   - Journey (Sobre): layout 3-col com 2 fotos + card destaque (v19)
   - Reviews v19-style: avatar colorido + Google SVG + aspas tipográficas
   - CTA Final: estrutura v19 + texto v20 + botão "Falar no WhatsApp agora"
   - Fontes v18 (Plus Jakarta + Fraunces — já aplicadas)
   - FAB WhatsApp: mobile some, desktop só após hero
   - Sticky bar: mobile só após hero, some no #agendar e footer
   ============================================================ */

/* === PROMO BAR LARANJA (v18) === */
.promo-bar {
  background: linear-gradient(95deg, #F39B1A 0%, #F5A623 50%, #E89515 100%) !important;
  color: var(--white);
  padding: 10px 50px 10px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  z-index: 50;
  display: block;
}
.promo-bar > span {
  display: inline-block;
  max-width: 100%;
  line-height: 1.4;
}
.promo-bar a {
  color: var(--white) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}
.promo-bar a:hover { color: rgba(255,255,255,0.85) !important; }
.promo-bar__close {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.92);
  font-size: 20px;
  line-height: 1;
  border-radius: 999px;
  cursor: pointer;
}
.promo-bar__close:hover { background: rgba(255,255,255,0.18); color: var(--white); }
@media (max-width: 640px) {
  .promo-bar { padding: 10px 42px 10px 14px; font-size: 13px; }
}

/* === HEADER MINIMALISTA (v18) === */
.site-header {
  background: var(--cream-50);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 49;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__logo { width: 38px; height: 38px; flex-shrink: 0; }
.brand > span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--coal-900);
  line-height: 1;
}
.brand__tag {
  font-size: 11.5px;
  color: var(--coal-500);
  font-weight: 500;
  margin-top: 2px;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1040px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  color: var(--coal-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 14.5px;
  padding: 6px 2px;
  transition: color 0.15s;
}
.nav-desktop a:hover { color: var(--teal-700); }
.nav-desktop__promo {
  color: var(--orange-500) !important;
  font-weight: 700 !important;
}
.nav-desktop__promo:hover { color: var(--orange-600) !important; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Aberto agora badge — só aparece em desktop */
.open-badge {
  display: none;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: var(--teal-50);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-700);
}
@media (min-width: 880px) {
  .open-badge { display: inline-flex; }
}
.open-badge__dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.20);
  animation: openPulse 2.2s ease-in-out infinite;
}
.open-badge--closed .open-badge__dot {
  background: #94A3B8;
  box-shadow: none;
  animation: none;
}
@keyframes openPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.20); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0.10); }
}

/* Header CTA WhatsApp — VISÍVEL apenas no desktop (≥1040px) */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #25D366;
  color: var(--white);
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(37,211,102,0.30);
  transition: background 0.15s, transform 0.15s;
}
.header-cta:hover { background: #1FAE52; transform: translateY(-1px); }
.header-cta svg { width: 18px; height: 18px; }
.header-cta--desktop-only { display: none; }
@media (min-width: 1040px) {
  .header-cta--desktop-only { display: inline-flex; }
}

/* Nav toggle só mobile/tablet */
.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--teal-50);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  color: var(--teal-700);
  flex-shrink: 0;
}
.nav-toggle:hover { background: var(--teal-100); }
.nav-toggle svg { width: 22px; height: 22px; }
@media (min-width: 1040px) {
  .nav-toggle { display: none; }
}

@media (max-width: 740px) {
  .brand__tag { display: none; }
  .brand__logo { width: 36px; height: 36px; }
  .brand__name { font-size: 1.15rem; }
}

/* === HERO MOBILE: foto antes do texto + centralização correta === */
@media (max-width: 879px) {
  .hero { padding: 16px 0 28px; }
  .hero__grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
  }
  .hero__media {
    order: -1;
    max-height: none;
    aspect-ratio: 4/5;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
  }
  .hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero__title { font-size: clamp(1.55rem, 6.8vw, 1.95rem); margin-bottom: 12px; }
  .hero__lead { font-size: 0.98rem; margin-bottom: 16px; }
  .hero__ctas { flex-direction: column; gap: 10px; margin-bottom: 14px; }
  .hero__ctas .btn { width: 100%; }
}

/* === JOURNEY (Sobre) — adaptado da v19 === */
.journey {
  background: linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
  padding: clamp(56px, 9vw, 110px) 0;
}
.journey__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .journey__grid {
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 48px;
  }
}
.journey__photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  aspect-ratio: 3/4;
  position: relative;
}
.journey__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.journey__photo--left { transform: rotate(-2deg); }
.journey__photo--right { transform: rotate(2deg); }
@media (max-width: 899px) {
  .journey__photo--left, .journey__photo--right {
    transform: none;
    max-width: 320px;
    margin: 0 auto;
  }
}
.journey__photo::after {
  content: attr(data-caption);
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255,255,255,0.96);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 0.88rem;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--coal-800);
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
}
.journey__text {
  text-align: center;
}
.journey__text .section-eyebrow {
  background: var(--cream-100);
  color: var(--coal-700);
  margin-bottom: 16px;
}
.journey__text h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--coal-900);
  margin-bottom: 22px;
}
.journey__text h2 em {
  color: var(--teal-700);
  font-style: italic;
  font-weight: 700;
}
.journey__text p {
  font-size: 1.02rem;
  color: var(--coal-700);
  line-height: 1.65;
  margin-bottom: 14px;
}
.journey__stat {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 32px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-top: 22px;
}
.journey__stat strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.3rem;
  color: var(--orange-500);
  line-height: 1;
}
.journey__stat span {
  font-size: 0.86rem;
  color: var(--coal-600);
  margin-top: 4px;
}

/* === REVIEWS V19-STYLE === */
.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 22px 22px !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 6px 18px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex !important;
  flex-direction: column !important;
  gap: 14px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08), 0 12px 32px rgba(0,0,0,0.08);
}
.review-card__header {
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin-bottom: 0 !important;
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff !important;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: 'Fraunces', Georgia, serif;
  flex-shrink: 0;
}
.review-card__header > div:not(.review-card__avatar) {
  flex: 1;
}
.review-card__header strong {
  display: block;
  font-size: 0.97rem;
  color: var(--coal-900);
  line-height: 1.2;
}
.review-card__stars {
  color: #FBBC04;
  font-size: 0.9rem;
  letter-spacing: 2px;
  display: inline-block;
  margin-top: 3px;
}
.review-card__g {
  width: 22px;
  height: 22px;
  margin-left: auto;
  opacity: 0.7;
  flex-shrink: 0;
}
.review-card__body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--coal-800);
  margin: 0 !important;
  position: relative;
  padding-left: 14px;
  font-style: normal !important;
}
.review-card__body::before {
  content: '"';
  position: absolute;
  left: -4px;
  top: -10px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.2rem;
  color: var(--teal-300);
  font-weight: 700;
  line-height: 1;
}

/* === SECTION SUBLEAD (galeria) === */
.section-sublead {
  font-size: 14px;
  color: var(--coal-500);
  margin-top: 6px;
  font-style: italic;
}


/* === FAB WHATSAPP: SOME NO MOBILE, NO DESKTOP SÓ APÓS HERO === */
.fab-whatsapp {
  display: none !important;
}
@media (min-width: 880px) {
  .fab-whatsapp {
    display: grid !important;
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    place-items: center;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.38);
    z-index: 60;
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 0.3s, transform 0.3s, box-shadow 0.2s;
    pointer-events: none;
  }
  .fab-whatsapp.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .fab-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.50);
  }
  .fab-whatsapp svg { width: 28px; height: 28px; }
}

/* === STICKY CTA BAR: MOBILE só após hero, some no #agendar e footer === */
.sticky-cta-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 70;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: #25D366;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translateY(120%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  pointer-events: none;
}
.sticky-cta-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta-bar.is-hidden {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
@media (min-width: 880px) {
  .sticky-cta-bar { display: none !important; }
}
.sticky-cta-bar__text {
  flex: 1;
  color: var(--white);
  line-height: 1.25;
  font-size: 13.5px;
  font-weight: 600;
}
.sticky-cta-bar__text strong { display: block; font-size: 14.5px; margin-bottom: 2px; }
.sticky-cta-bar__text small { font-weight: 500; opacity: 0.92; font-size: 12px; }
.sticky-cta-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--teal-700);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}
.sticky-cta-bar__cta svg { width: 16px; height: 16px; }

/* ============================================================
   MOBILE MENU v22 — versão canônica funcional (body.menu-open)
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15,27,38,0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s;
  display: flex;
  justify-content: flex-end;
}
body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
}
.mobile-menu[hidden] {
  display: flex; /* override do hidden default — usamos body.menu-open */
}
.mobile-menu__inner {
  width: min(360px, 88%);
  height: 100%;
  background: var(--cream-50);
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0,0,0,0.20);
  transform: translateX(20px);
  transition: transform 0.22s ease;
}
body.menu-open .mobile-menu__inner {
  transform: translateX(0);
}
.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 14px;
}
.mobile-menu__close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--coal-700);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.mobile-menu__close svg { width: 20px; height: 20px; }
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-menu__nav a {
  padding: 14px 16px;
  border-radius: 10px;
  color: var(--coal-800);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu__nav a:hover, .mobile-menu__nav a:focus {
  background: var(--teal-50);
  color: var(--teal-700);
}
body.menu-open { overflow: hidden; }

/* ============================================================
   PET'S DAY v22 — CORREÇÕES CRÍTICAS
   - Hero mobile: foto paisagem 5:4 com max-height limitado
   - Header mobile: "Vila Progresso · CG/MS" SEMPRE visível
   - Footer: títulos sem serifa + endereço sem sublinhado
   - Aberto agora: estado "fechado" cinza
   - Seção #agendar: fundo tiffany sólido + texto branco + botão verde
   - Alternância de cor de fundo entre dobras
   ============================================================ */

/* === HEADER MOBILE: mostrar "Vila Progresso · CG/MS" === */
@media (max-width: 740px) {
  .brand__tag {
    display: block !important;
    font-size: 11px !important;
    color: var(--coal-500) !important;
    font-weight: 500 !important;
    margin-top: 1px !important;
    white-space: nowrap;
  }
  .brand__name { font-size: 1.15rem !important; }
  .brand__logo { width: 38px !important; height: 38px !important; }
}

/* === HERO MOBILE v22: foto paisagem MENOR para caber primeira dobra === */
@media (max-width: 879px) {
  .hero { padding: 14px 0 22px !important; }
  .hero__grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
  }
  .hero__media {
    order: -1 !important;
    aspect-ratio: 5/4 !important;  /* PAISAGEM agora */
    max-height: 220px !important;  /* CRÍTICO: limitar altura */
    width: 100% !important;
    border-radius: 14px !important;
    overflow: hidden;
  }
  .hero__media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  .hero__badges { gap: 6px 8px !important; margin-bottom: 10px !important; }
  .hero__badge { font-size: 11.5px !important; padding: 4px 10px !important; }
  .hero__title {
    font-size: clamp(1.4rem, 6.2vw, 1.75rem) !important;
    line-height: 1.15 !important;
    margin-bottom: 10px !important;
  }
  .hero__lead {
    font-size: 0.95rem !important;
    margin-bottom: 14px !important;
    line-height: 1.45 !important;
  }
  .hero__ctas {
    flex-direction: column !important;
    gap: 9px !important;
    margin-bottom: 12px !important;
  }
  .hero__ctas .btn {
    width: 100% !important;
    padding: 13px 18px !important;
    font-size: 0.97rem !important;
  }
  .hero__proofs {
    padding-top: 10px !important;
    font-size: 12.5px !important;
    gap: 6px 12px !important;
  }
}

/* === SEÇÃO #AGENDAR v22: AZUL TIFFANY (v17) + TEXTO BRANCO + BOTÃO VERDE === */
#agendar.cta-final {
  background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-700) 50%, var(--teal-800) 100%) !important;
  padding: clamp(60px, 9vw, 96px) 0 !important;
  color: var(--white) !important;
}
#agendar.cta-final .container {
  position: relative;
  z-index: 2;
}
#agendar.cta-final .cta-final__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: var(--white) !important;
}
#agendar.cta-final .cta-final__badge {
  background: var(--white) !important;
  color: var(--orange-600) !important;
  border: 0 !important;
  font-weight: 700;
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  margin-bottom: 20px;
}
#agendar.cta-final h2 {
  color: var(--white) !important;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
#agendar.cta-final p {
  color: rgba(255,255,255,0.94) !important;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  margin-bottom: 26px;
  line-height: 1.55;
}
#agendar.cta-final .cta-final__ctas .btn {
  background: #25D366 !important;
  color: #fff !important;
  padding: 16px 36px;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18), 0 4px 10px rgba(37, 211, 102, 0.30);
  transition: transform 0.18s, box-shadow 0.18s;
}
#agendar.cta-final .cta-final__ctas .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25), 0 6px 16px rgba(37, 211, 102, 0.45);
  background: #20B85A !important;
}
#agendar.cta-final .cta-final__note {
  color: rgba(255,255,255,0.85) !important;
  font-size: 13.5px;
  margin-top: 22px;
  font-weight: 500;
}

/* === ALTERNÂNCIA DE COR DE FUNDO ENTRE DOBRAS === */
/* Order esperada das dobras: hero → servicos → diferenciais → sobre → galeria → avaliacoes → ofertas → faq → localizacao → agendar */
.hero          { background: linear-gradient(135deg, var(--teal-50) 0%, #FCFAF5 60%); }
#servicos      { background: var(--cream-50); }
#diferenciais  { background: linear-gradient(180deg, var(--teal-50) 0%, var(--cream-50) 100%); }
#sobre.journey { background: linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%); }
#galeria       { background: var(--teal-50) !important; }
#avaliacoes    { background: var(--cream-100) !important; }
#ofertas       { background: var(--white) !important; }
#faq           { background: var(--teal-50) !important; }
#localizacao   { background: var(--cream-50) !important; }

/* === FOOTER v22: títulos sem serifa (v18) === */
.site-footer h4 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--white) !important;
  margin-bottom: 14px !important;
}
.site-footer strong {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important;
}

/* === FOOTER endereço: link sem sublinhado === */
.footer-contact p a[data-event="click_maps_directions"] {
  text-decoration: none !important;
  border-bottom: 0 !important;
  color: inherit !important;
  transition: color 0.15s !important;
}
.footer-contact p a[data-event="click_maps_directions"]:hover {
  color: var(--teal-300) !important;
}

/* === NAV TOGGLE v22 (estilo v18) === */
.nav-toggle {
  background: var(--teal-50);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  color: var(--teal-700);
}
.nav-toggle:hover { background: var(--teal-100); }
@media (min-width: 1040px) { .nav-toggle { display: none; } }

/* Open badge — estado "fechado" cinza */
.open-badge--closed {
  background: rgba(0,0,0,0.05) !important;
  color: var(--coal-600) !important;
}
.open-badge--closed .open-badge__dot {
  background: #94A3B8 !important;
  box-shadow: none !important;
  animation: none !important;
}


/* === JOURNEY (Sobre) v22: padding reduzido para caber em dobra === */
.journey {
  padding: clamp(40px, 6vw, 80px) 0 !important;
}
.journey__text h2 {
  font-size: clamp(1.65rem, 3.4vw, 2.25rem) !important;
  margin-bottom: 16px !important;
}
.journey__text p {
  font-size: 0.98rem !important;
  margin-bottom: 12px !important;
  line-height: 1.55 !important;
}
.journey__stat {
  padding: 14px 28px !important;
  margin-top: 16px !important;
}
.journey__stat strong {
  font-size: 1.9rem !important;
}
@media (min-width: 900px) {
  .journey__grid {
    gap: 40px !important;
  }
  .journey__photo {
    max-height: 380px;
  }
}

/* === HERO DESKTOP: foto cabe na primeira dobra === */
@media (min-width: 880px) {
  .hero {
    padding: clamp(24px, 3vw, 48px) 0 clamp(28px, 4vw, 56px) !important;
    min-height: calc(100vh - 110px);
    display: flex;
    align-items: center;
  }
  .hero__media {
    aspect-ratio: 4/5;
    max-height: 520px;
    border-radius: 22px;
    overflow: hidden;
  }
  .hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

/* ============================================================
   PET'S DAY v23 — CTA FINAL #agendar (cor exata da v17)
   Esta regra VENCE qualquer regra anterior por ordem no CSS.
   ============================================================ */
section#agendar.cta-final,
#agendar {
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-700) 100%) !important;
  color: var(--white) !important;
  padding: clamp(60px, 9vw, 110px) 0 !important;
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  margin: 0 !important;
}
/* Prevenção de scrollbar horizontal global causada por pseudo-elementos */
html, body { overflow-x: hidden !important; max-width: 100vw !important; }
section#agendar .cta-final__inner,
#agendar .cta-final__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
section#agendar .cta-final__badge,
#agendar .cta-final__badge {
  background: var(--white) !important;
  color: var(--orange-600) !important;
  border: 0 !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  padding: 7px 16px !important;
  border-radius: 999px !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15) !important;
  margin-bottom: 22px !important;
  display: inline-block !important;
}
section#agendar h2,
#agendar h2 {
  color: var(--white) !important;
  font-family: 'Fraunces', Georgia, serif !important;
  font-size: clamp(2rem, 5vw, 3rem) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  margin-bottom: 18px !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
section#agendar p,
#agendar p {
  color: rgba(255,255,255,0.95) !important;
  font-size: clamp(1rem, 2.3vw, 1.18rem) !important;
  line-height: 1.55 !important;
  margin-bottom: 26px !important;
}
section#agendar .cta-final__ctas,
#agendar .cta-final__ctas {
  display: flex !important;
  justify-content: center !important;
  margin-bottom: 18px !important;
}
section#agendar .btn,
#agendar .btn,
section#agendar .btn--whatsapp,
#agendar .btn--whatsapp {
  background: #25D366 !important;
  color: #fff !important;
  padding: 16px 36px !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22), 0 4px 10px rgba(37, 211, 102, 0.35) !important;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s !important;
  text-decoration: none !important;
  border: 0 !important;
}
section#agendar .btn:hover,
#agendar .btn:hover {
  transform: translateY(-2px);
  background: #1FAE52 !important;
  box-shadow: 0 12px 32px rgba(0,0,0,0.28), 0 6px 16px rgba(37, 211, 102, 0.50) !important;
}
section#agendar .cta-final__note,
#agendar .cta-final__note {
  color: rgba(255,255,255,0.88) !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  margin-top: 8px !important;
  margin-bottom: 0 !important;
}
/* Decoração ambiente: bolhas brancas sutis (igual v17) */
#agendar::before,
#agendar::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
#agendar::before { top: -80px; left: -60px; width: 280px; height: 280px; }
#agendar::after { bottom: -100px; right: -80px; width: 360px; height: 360px; }

/* ============================================================
   PET'S DAY v23 — Outras seções (alternância correta)
   ============================================================ */
#diferenciais { background: var(--teal-50) !important; }
#ofertas      { background: linear-gradient(180deg, var(--teal-50) 0%, var(--cream-50) 100%) !important; }
#servicos     { background: var(--cream-50) !important; }
#sobre.journey { background: linear-gradient(180deg, var(--cream-100) 0%, var(--cream-50) 100%) !important; }
#galeria      { background: var(--teal-50) !important; }
#avaliacoes   { background: var(--cream-100) !important; }
#faq          { background: var(--teal-50) !important; }
#localizacao  { background: var(--cream-50) !important; }

/* ============================================================
   PET'S DAY v24 — Correções finais (cor telefone, dobra desktop)
   ============================================================ */

/* FIX: telefone clicável (tel:) dentro do #agendar — manter branco */
section#agendar .cta-final__note a,
#agendar .cta-final__note a,
section#agendar a[href^="tel:"],
#agendar a[href^="tel:"] {
  color: var(--white) !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(255,255,255,0.5) !important;
  text-underline-offset: 3px;
  font-weight: 600;
}
section#agendar .cta-final__note a:hover,
#agendar .cta-final__note a:hover {
  color: var(--white) !important;
  text-decoration-color: var(--white) !important;
}

/* FIX: Hero DESKTOP — subir conteúdo para caber proofs (climatizado/água morna) na 1ª dobra */
@media (min-width: 880px) {
  .hero {
    padding: 24px 0 36px !important;
    min-height: auto !important;
  }
  .hero__grid {
    align-items: center !important;
    gap: 40px !important;
  }
  .hero__media {
    aspect-ratio: 4/5 !important;
    max-height: 470px !important;  /* reduzido de 520 → 470 para subir conteúdo */
  }
  .hero__title {
    font-size: clamp(2rem, 3.6vw, 2.7rem) !important;  /* levemente menor */
    line-height: 1.1 !important;
    margin-bottom: 14px !important;
  }
  .hero__lead {
    font-size: 1.02rem !important;
    margin-bottom: 18px !important;
  }
  .hero__ctas { margin-bottom: 16px !important; }
  .hero__proofs {
    padding-top: 14px !important;
    font-size: 13.5px !important;
    margin-top: 4px !important;
  }
}

/* FIX adicional: garantir que telefone na nota fique branco mesmo se não tiver tag <a> */
section#agendar .cta-final__note,
#agendar .cta-final__note {
  color: rgba(255,255,255,0.92) !important;
}

