/* ============================================================
   CLÍNICA PROPET — STYLESHEET
   Identidade visual oficial · paleta extraída do logo
   ============================================================ */

/* ----- VARIÁVEIS GLOBAIS ----- */
:root {
  /* Cores da marca */
  --propet-blue: #00B4F0;
  --propet-blue-deep: #00A0DC;
  --propet-blue-ink: #006C9E;
  --propet-green: #8CC83C;
  --propet-green-deep: #6FA82A;
  --propet-green-ink: #3F6614;

  /* Azul tints */
  --blue-50: #EFFAFE;
  --blue-100: #D6F2FC;
  --blue-200: #A8E4F8;
  --blue-300: #6DD2F4;
  --blue-700: #007AA8;
  --blue-900: #003C56;

  /* Verde tints */
  --green-50: #F4FAE6;
  --green-100: #E7F4CC;
  --green-200: #D0E89A;
  --green-700: #5B8624;

  /* Neutros */
  --ink-1000: #0B1C26;
  --ink-900: #142A38;
  --ink-800: #1F3C4F;
  --ink-700: #345266;
  --ink-500: #7A95AB;
  --ink-400: #A4B8C8;
  --ink-300: #C8D6E0;
  --ink-200: #E2EAF0;
  --ink-100: #EFF4F7;
  --ink-50: #F7FAFC;
  --paper: #FFFFFF;

  /* Tipografia */
  --font-display: 'Nunito', system-ui, -apple-system, sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-script: 'Caveat', cursive;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(11, 28, 38, 0.06);
  --shadow-md: 0 6px 16px rgba(11, 28, 38, 0.08);
  --shadow-lg: 0 14px 36px rgba(11, 28, 38, 0.10);
  --shadow-brand: 0 10px 28px rgba(0, 180, 240, 0.28);

  /* Container */
  --container-max: 1200px;
  --container-pad: 24px;

  /* Transições */
  --t-fast: 0.15s ease;
  --t-base: 0.3s ease;
  --t-slow: 0.5s ease;
}

/* ----- RESET ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-700);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink-1000);
  margin: 0;
  letter-spacing: -0.01em;
}

/* ----- UTILITÁRIOS ----- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  width: 100%;
}
.icon { width: 20px; height: 20px; flex-shrink: 0; }
.icon--blue { color: var(--propet-blue); }
.icon--green { color: var(--propet-green); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-block;
}
.eyebrow--blue { color: var(--propet-blue); }
.eyebrow--green { color: var(--propet-green-deep); }
.eyebrow--muted { color: var(--ink-500); }
.eyebrow--on-blue { color: rgba(255,255,255,0.85); }

.stars { color: #F2B544; letter-spacing: 0.1em; font-size: 16px; }
.stars--lg { font-size: 32px; letter-spacing: 0.15em; }

.hl {
  color: var(--propet-blue);
  font-weight: inherit;
}

/* ----- BOTÕES ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: transform var(--t-fast), box-shadow var(--t-base), background var(--t-base);
  text-align: center;
  max-width: 100%;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 18px; height: 18px; }

.btn--primary {
  background: var(--propet-blue);
  color: white;
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover { background: var(--propet-blue-deep); }

.btn--outline {
  background: transparent;
  color: var(--propet-blue);
  border-color: var(--propet-blue);
}
.btn--outline:hover { background: var(--blue-50); }

.btn--white {
  background: white;
  color: var(--propet-blue);
}
.btn--ghost {
  background: rgba(255,255,255,0.15);
  color: white;
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover { background: rgba(255,255,255,0.25); }

.btn--lg {
  padding: 18px 32px;
  font-size: 15px;
}

/* ----- SECTION BASE ----- */
.section {
  padding: 96px 0;
  position: relative;
}
.section--blue-soft { background: var(--blue-50); }
.section--green-soft { background: var(--green-50); }
.section--white { background: var(--paper); }

.section__header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.section__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin: 20px 0 14px;
  color: var(--ink-1000);
}
.section__sub {
  font-size: 17px;
  color: var(--ink-700);
  margin: 0;
  line-height: 1.55;
}
.section__cta {
  text-align: center;
  margin-top: 56px;
}

/* ============================================================
   HEADER STICKY
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: white;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--t-base), border-color var(--t-base);
}
.header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--ink-200);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 80px;
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header__logo { height: 44px; width: auto; }
.header__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.header__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink-1000);
}
.header__tagline {
  font-size: 11px;
  color: var(--ink-500);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  transition: color var(--t-fast);
  position: relative;
}
.header__nav a:hover { color: var(--propet-blue); }
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0; right: 0;
  height: 2px;
  background: var(--propet-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-base);
}
.header__nav a:hover::after { transform: scaleX(1); }

.header__cta {
  padding: 10px 18px;
  font-size: 13px;
}

.header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.header__menu-toggle span {
  width: 22px; height: 2px;
  background: var(--ink-1000);
  border-radius: 1px;
  transition: transform var(--t-base);
}

/* ============================================================
   DOBRA 1 — HERO
   ============================================================ */
.hero {
  padding: 140px 0 96px;
  background: linear-gradient(135deg, var(--paper) 0%, var(--blue-50) 100%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__copy { max-width: 600px; }

.hero__headline {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  margin: 18px 0 24px;
  color: var(--ink-1000);
  letter-spacing: -0.02em;
}

.hero__sub {
  font-size: 17px;
  color: var(--ink-700);
  margin-bottom: 32px;
  line-height: 1.55;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-200);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-700);
}
.hero__trust-item strong { color: var(--ink-1000); }
.hero__trust-sub { color: var(--ink-500); }

.hero__photo {
  position: relative;
}
/* Slideshow do Hero — CSS puro, sem JS.
   7 slides cross-dissolve em loop de 28s (4s por slide com 1s de overlap). */
.hero__slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  min-height: 320px; /* fallback caso aspect-ratio não seja suportado */
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  background: var(--blue-50);
  isolation: isolate; /* novo stacking context, evita bugs de paint */
}
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: 0;
  animation: heroSlideshow 28s infinite;
  /* Acelera só com transform pra não esgotar memória GPU com 7 will-change */
  transform: translateZ(0);
  backface-visibility: hidden;
}
.hero__slide:nth-child(1) { animation-delay: 0s; }
.hero__slide:nth-child(2) { animation-delay: 4s; }
.hero__slide:nth-child(3) { animation-delay: 8s; }
.hero__slide:nth-child(4) { animation-delay: 12s; }
.hero__slide:nth-child(5) { animation-delay: 16s; }
.hero__slide:nth-child(6) { animation-delay: 20s; }
.hero__slide:nth-child(7) { animation-delay: 24s; }

@keyframes heroSlideshow {
  0%    { opacity: 0; }
  3.5%  { opacity: 1; }   /* fade in: ~1s */
  14.3% { opacity: 1; }   /* visível: ~3s */
  17.8% { opacity: 0; }   /* fade out: ~1s */
  100%  { opacity: 0; }
}

/* Img genérica pra todas as fotos do site — herda forma do container */
.vet-card__img,
.silvestres__img,
.silvestres__mini-img,
.gallery-item__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Equipe — fotos verticais com rosto em primeiro plano: aspect 4:5 + preserva topo */
.vet-card__img {
  aspect-ratio: 4/5;
  object-position: center 20%;
}

/* Silvestres principal — Dr. Thiago + arara, aspect 4:5 + preserva topo */
.silvestres__img {
  aspect-ratio: 4/5;
  object-position: center 25%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Mini fotos lado a lado — quadradas, center */
.silvestres__mini-img {
  aspect-ratio: 1/1;
  object-position: center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* Galeria padrão — vertical 4:5, preserva topo (fotos com pessoas) */
.gallery-item__img {
  aspect-ratio: 4/5;
  object-position: center 25%;
}

/* Galeria XL (recepção é horizontal) — proporção horizontal preserva a cena */
.gallery-item--xl .gallery-item__img {
  aspect-ratio: 4/5;
  object-position: center;
}

.photo-placeholder {
  width: 100%;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-md);
}
.photo-placeholder--hero {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-300));
}
.photo-placeholder__inner {
  background: rgba(255,255,255,0.65);
  border-radius: 50%;
  padding: 24px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.photo-placeholder__inner span {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-700);
}
.photo-placeholder__inner small {
  font-size: 11px;
  color: var(--ink-500);
}

.hero__photo-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: white;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 260px;
}
.hero__photo-badge strong {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink-1000);
  font-weight: 700;
  margin-top: 4px;
}
.hero__photo-badge small { font-size: 12px; color: var(--ink-500); }

/* ============================================================
   DOBRA 2 — TRUST BAR
   ============================================================ */
.trust-bar {
  padding: 32px 0;
  background: var(--blue-50);
}
.trust-bar__eyebrow {
  text-align: center;
  display: block;
  margin-bottom: 24px;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
}
.trust-bar__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  padding: 0 20px;
  border-right: 1px solid var(--blue-200);
}
.trust-bar__item:last-child { border-right: none; }

.trust-bar__stat {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust-bar__stat--blue { color: var(--propet-blue); }
.trust-bar__stat--green { color: var(--propet-green); }
.trust-bar__stat--text { font-size: clamp(20px, 2.8vw, 30px); }

.trust-bar__item strong {
  font-size: 14px;
  color: var(--ink-1000);
  font-weight: 700;
  margin-top: 4px;
}
.trust-bar__item small { font-size: 12px; color: var(--ink-500); }

/* ============================================================
   DOBRA 3 — ESPECIALIDADES
   ============================================================ */
.especialidades__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.esp-card {
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  cursor: default;
}
.esp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--propet-blue);
}
.esp-card__icon {
  width: 44px; height: 44px;
  background: var(--blue-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--propet-blue);
  margin-bottom: 16px;
  font-weight: 900;
}
.esp-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--ink-1000);
}
.esp-card p {
  font-size: 12px;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.45;
}

.esp-card--featured {
  background: var(--green-50);
  border-color: var(--propet-green);
  border-width: 2px;
}
.esp-card--featured .esp-card__icon {
  background: var(--propet-green);
  color: white;
}
.esp-card--featured p {
  color: var(--propet-green-ink);
  font-weight: 600;
}

/* Variante sutil — sinaliza serviço estético (não médico) dentro da grid */
.esp-card--green-accent .esp-card__icon {
  background: var(--green-50);
  color: var(--propet-green-deep);
}
.esp-card--green-accent:hover {
  border-color: var(--propet-green);
}
.esp-card--green-accent:hover .esp-card__more {
  color: var(--propet-green-deep);
}
.esp-card--green-accent .esp-card__more {
  color: var(--propet-green-deep);
}

/* Card clicável (vira link pra página de especialidade) */
.esp-card--link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
}
.esp-card--link:hover {
  border-color: var(--propet-blue);
}
.esp-card--link:hover .esp-card__more {
  color: var(--propet-blue-deep);
  transform: translateX(2px);
}
.esp-card__more {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  color: var(--propet-blue);
  letter-spacing: 0.02em;
  transition: transform var(--t-fast), color var(--t-fast);
}

/* ============================================================
   DOBRA 3.5 — BANHO E TOSA
   ============================================================ */
.banho-tosa__header { margin-bottom: 48px; }

.bt-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--paper);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--propet-green-ink);
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
  margin-bottom: 4px;
}
.bt-badge__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--propet-green);
  box-shadow: 0 0 0 4px rgba(140, 200, 60, 0.18);
  animation: bt-pulse 2.4s ease-in-out infinite;
}
@keyframes bt-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(140, 200, 60, 0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(140, 200, 60, 0.05); }
}

.bt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.bt-card {
  background: var(--paper);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.bt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--propet-green);
}
.bt-card__icon {
  width: 48px; height: 48px;
  background: var(--green-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--propet-green-deep);
  margin-bottom: 18px;
  font-weight: 900;
}
.bt-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--ink-1000);
  line-height: 1.25;
}
.bt-card p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-700);
  margin: 0;
  line-height: 1.55;
}

.bt-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

/* ============================================================
   DOBRA 4 — DIFERENCIAIS
   ============================================================ */
.dif__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dif-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  border-left: 5px solid var(--propet-blue);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.dif-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.dif-card--green { border-left-color: var(--propet-green); }

.dif-card__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  color: var(--propet-blue);
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.dif-card--green .dif-card__num { color: var(--propet-green); }

.dif-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.25;
}
.dif-card p {
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.55;
  margin: 0;
}

.dif__quote {
  text-align: center;
  font-size: 18px;
  color: var(--ink-700);
  margin: 56px 0 0;
  font-family: var(--font-display);
}
.dif__quote em { color: var(--ink-1000); }

/* ============================================================
   DOBRA 5 — EQUIPE
   ============================================================ */
.equipe__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.vet-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--ink-200);
}
.vet-card__photo .photo-placeholder {
  aspect-ratio: 16/9;
  border-radius: 0;
  box-shadow: none;
}
.photo-placeholder--blue {
  background: linear-gradient(135deg, var(--blue-100), var(--blue-200));
}
.photo-placeholder--green {
  background: linear-gradient(135deg, var(--green-100), var(--green-200));
}

.vet-card__body { padding: 32px; }
.vet-card__body h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}
.vet-card__crmv {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.vet-card__crmv--blue { color: var(--propet-blue); }
.vet-card__crmv--green { color: var(--propet-green-deep); }

.vet-card__info {
  padding: 14px 0;
  border-top: 1px solid var(--ink-200);
}
.vet-card__info:first-of-type { border-top: 1px solid var(--ink-200); }
.vet-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin: 0 0 4px;
}
.vet-card__info p:last-child {
  font-size: 14px;
  color: var(--ink-700);
  margin: 0;
}

.vet-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.tag, .chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
}
.tag--blue, .chip--blue { background: var(--blue-50); color: var(--propet-blue-ink); }
.tag--green, .chip--green { background: var(--green-50); color: var(--propet-green-ink); }

.equipe__team {
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: left;
}
.equipe__team h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 8px 0 8px;
}
.equipe__team p { margin: 0; color: var(--ink-700); }

/* ============================================================
   DOBRA 6 — INTEGRATIVAS
   ============================================================ */
.integ__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.integ-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  border-top: 5px solid var(--propet-blue);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.integ-card--green { border-top-color: var(--propet-green); }

.integ-card__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: var(--propet-blue);
  font-family: var(--font-display);
  margin-bottom: 24px;
}
.integ-card--green .integ-card__icon {
  background: var(--green-50);
  color: var(--propet-green);
}

.integ-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 6px;
  line-height: 1.2;
}
.integ-card h3 small {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--propet-blue);
  margin-top: 4px;
}
.integ-card--green h3 small { color: var(--propet-green-deep); }

.integ-card__block {
  border-top: 1px solid var(--ink-200);
  padding-top: 16px;
  margin-top: 16px;
}
.integ-card__block p {
  font-size: 14px;
  color: var(--ink-700);
  margin: 4px 0 0;
}
.integ-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.integ-card__chip {
  margin-top: auto;
  padding-top: 20px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  display: block;
}
.integ-card__chip--blue {
  background: var(--blue-50);
  color: var(--propet-blue-ink);
  padding: 12px;
  border-radius: var(--radius-pill);
  margin-top: 24px;
}
.integ-card__chip--green {
  background: var(--green-50);
  color: var(--propet-green-ink);
  padding: 12px;
  border-radius: var(--radius-pill);
  margin-top: 24px;
}

.bonus-bar {
  background: var(--ink-1000);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  border-left: 6px solid var(--propet-green);
}
.bonus-bar__inner h3 {
  color: white;
  font-size: 22px;
  font-weight: 800;
  margin: 8px 0 0;
  line-height: 1.3;
}
.bonus-bar__badge {
  background: var(--propet-green);
  width: 96px; height: 96px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bonus-bar__badge strong {
  color: white;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
}
.bonus-bar__badge small {
  color: white;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

/* ============================================================
   DOBRA 7 — SILVESTRES
   ============================================================ */
.silvestres { padding: 96px 0; }
.silvestres__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.silvestres__photo { position: relative; }
.photo-placeholder--dark {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--ink-1000), var(--ink-800));
}
.photo-placeholder--dark .photo-placeholder__inner { background: rgba(255,255,255,0.15); }
.photo-placeholder--dark .photo-placeholder__inner span,
.photo-placeholder--dark .photo-placeholder__inner small { color: white; }

.silvestres__photo-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: white;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 280px;
}
.silvestres__photo-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink-1000);
  font-weight: 800;
  margin-top: 4px;
}
.silvestres__photo-badge small {
  font-size: 12px;
  color: var(--ink-500);
}

.silvestres__mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.photo-placeholder--blue-light {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
}
.photo-placeholder--green-light {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
}
.photo-placeholder--gray {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--ink-100), var(--ink-200));
}

.silvestres__copy { padding-top: 12px; }
.silvestres__title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  margin: 18px 0 20px;
  letter-spacing: -0.02em;
}
.silvestres__sub {
  font-size: 17px;
  color: var(--ink-700);
  margin: 0 0 32px;
  line-height: 1.55;
}

.silvestres__species { margin-bottom: 32px; }
.species-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.chip {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
}

.silvestres__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid var(--ink-200);
  padding-top: 32px;
  margin-bottom: 32px;
}
.silvestres__features li {
  position: relative;
  padding-left: 24px;
}
.silvestres__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--propet-green);
}
.silvestres__features strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink-1000);
  margin-bottom: 4px;
  font-family: var(--font-display);
}
.silvestres__features span {
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.55;
}

.silvestres__reach {
  font-style: italic;
  color: var(--ink-500);
  font-size: 14px;
  margin-top: 20px;
}

/* ============================================================
   DOBRA 8 — AMBIENTES DA CLÍNICA (galeria com filtros)
   ============================================================ */
.amb-tagline {
  display: block;
  font-family: var(--font-script, 'Caveat', cursive);
  font-weight: 400;
  font-size: 26px;
  color: var(--ink-700);
  margin-top: 10px;
}
.amb-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 40px;
  max-width: 1080px;
}
.amb-filter-btn {
  background: var(--paper);
  border: 1.5px solid var(--ink-200);
  color: var(--ink-700);
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.18s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.amb-filter-btn:hover {
  border-color: var(--propet-blue);
  color: var(--propet-blue-ink);
}
.amb-filter-btn.is-active {
  background: var(--propet-blue);
  color: white;
  border-color: var(--propet-blue);
}
.amb-filter-btn__count {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(0,0,0,0.08);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.amb-filter-btn.is-active .amb-filter-btn__count {
  background: rgba(255,255,255,0.25);
}

.amb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 6px;
  gap: 14px;
}
.amb-card {
  grid-row-end: span 50;
  background: var(--ink-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.amb-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(11,28,38,0.12);
}
.amb-card.is-hidden { display: none; }
.amb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.amb-card--wide { grid-column-end: span 2; }
.amb-card--tall { grid-row-end: span 80; }

.amb-card__corner {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.95);
  color: var(--propet-blue-ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 2;
}
.amb-card__corner--green { color: var(--propet-green-ink, var(--propet-green-deep)); }

.amb-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,28,38,0.88) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.amb-card:hover .amb-card__overlay { opacity: 1; }
.amb-card__overlay-tag {
  display: inline-block;
  background: var(--propet-blue);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.amb-card__overlay-title {
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
}

.amb-note {
  text-align: center;
  color: var(--ink-500);
  font-size: 14px;
  margin-top: 40px;
}

/* Lightbox */
.amb-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11,28,38,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.amb-lightbox.is-open { display: flex; }
.amb-lightbox__content {
  max-width: 1100px;
  width: 100%;
  max-height: 92vh;
  display: flex;
  gap: 32px;
  align-items: center;
}
.amb-lightbox__img-wrap {
  flex: 1;
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.amb-lightbox__img-wrap img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 12px;
  object-fit: contain;
}
.amb-lightbox__info {
  width: 340px;
  color: white;
}
.amb-lightbox__info .amb-lightbox__tag {
  display: inline-block;
  background: var(--propet-blue);
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.amb-lightbox__info h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 14px;
  color: white;
}
.amb-lightbox__info p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
}
.amb-lightbox__close,
.amb-lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  transition: background 0.18s ease;
}
.amb-lightbox__close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
}
.amb-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 28px;
}
.amb-lightbox__nav--prev { left: 24px; }
.amb-lightbox__nav--next { right: 24px; }
.amb-lightbox__close:hover,
.amb-lightbox__nav:hover { background: rgba(255,255,255,0.25); }
.amb-lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  font-weight: 700;
}

/* Mantém .num antigos (usado em outras dobras se houver) */
.num {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.15em;
}
.num--blue { color: var(--propet-blue); }
.num--green { color: var(--propet-green); }

/* ============================================================
   DOBRA 9 — AVALIAÇÕES
   ============================================================ */
.avaliacoes__hero {
  background: var(--blue-50);
  border-radius: var(--radius-xl);
  padding: 36px 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}
.avaliacoes__hero-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.avaliacoes__big-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(72px, 8vw, 100px);
  color: var(--propet-blue);
  line-height: 1;
  letter-spacing: -0.03em;
}
.avaliacoes__hero-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 1px solid var(--blue-200);
  padding-left: 40px;
}
.avaliacoes__hero-text strong {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink-1000);
  font-weight: 800;
  margin-top: 4px;
}
.avaliacoes__hero-text small {
  font-size: 13px;
  color: var(--ink-500);
}
.avaliacoes__hero-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.g-logo {
  width: 44px; height: 44px;
  border: 2px solid var(--ink-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--ink-700);
}
.avaliacoes__hero-badge small { font-size: 11px; color: var(--ink-500); display: block; }
.avaliacoes__hero-badge strong { font-size: 14px; color: var(--ink-1000); display: block; }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.review-card {
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review-card header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--propet-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
}
.review-card header strong {
  display: block;
  font-size: 14px;
  color: var(--ink-1000);
  font-weight: 700;
}
.review-card header small {
  font-size: 12px;
  color: var(--ink-500);
}
.review-card p {
  font-size: 13px;
  color: var(--ink-700);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.review-card .chip { align-self: flex-start; }

.avaliacoes__google-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  margin-bottom: 56px;
  transition: background var(--t-base), border-color var(--t-base);
}
.avaliacoes__google-link:hover {
  background: var(--blue-50);
  border-color: var(--propet-blue);
}
.avaliacoes__google-link strong {
  display: block;
  font-size: 16px;
  color: var(--ink-1000);
  font-weight: 700;
}
.avaliacoes__google-link small {
  font-size: 13px;
  color: var(--ink-500);
}

.avaliacoes__bridge {
  text-align: center;
  padding: 24px 0;
}
.avaliacoes__bridge h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  margin-bottom: 24px;
}

/* ============================================================
   DOBRA 10 — JORNADA
   ============================================================ */
.jornada__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 48px;
}
.jornada__steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--blue-200);
  z-index: 0;
}
.jornada__steps li {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--propet-blue);
  color: white;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  box-shadow: var(--shadow-md);
  margin-bottom: 16px;
}
.step__num--green { background: var(--propet-green); }
.step__num--lg { width: 68px; height: 68px; font-size: 22px; }

.jornada__steps h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
}
.jornada__steps p {
  font-size: 13px;
  color: var(--ink-700);
  margin: 0;
  line-height: 1.55;
}

.jornada__time {
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.jornada__time p { margin: 0; color: var(--ink-700); }
.jornada__time strong { color: var(--ink-1000); }

/* ============================================================
   DOBRA 11 — FAQ
   ============================================================ */
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
.faq-item {
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  transition: all var(--t-base);
  overflow: hidden;
}
.faq-item[open] {
  background: var(--blue-50);
  border-color: var(--blue-200);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-500);
  flex-shrink: 0;
}
.faq-item[open] .faq__num { color: var(--propet-blue); }
.faq__q {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-1000);
  flex: 1;
  line-height: 1.3;
}
.faq__icon {
  font-size: 22px;
  font-weight: 900;
  color: var(--propet-blue);
  transition: transform var(--t-base);
}
.faq-item[open] .faq__icon { transform: rotate(45deg); }
.faq-item p {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.6;
}

.faq__help {
  background: var(--ink-1000);
  color: white;
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  text-align: left;
}
.faq__help h3 {
  color: white;
  font-size: 22px;
  font-weight: 800;
  margin: 12px 0 8px;
}
.faq__help p {
  color: var(--ink-400);
  font-size: 14px;
  margin: 0 0 24px;
}
.faq__help-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.faq__help-or { color: white; font-weight: 700; }
.faq__help-phone {
  color: var(--propet-green);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
}

/* ============================================================
   DOBRA 12 — LOCALIZAÇÃO
   ============================================================ */
.localizacao__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.localizacao__map iframe {
  display: block;
  box-shadow: var(--shadow-lg);
}
.localizacao__info { padding-top: 8px; }
.localizacao__title {
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  margin: 18px 0 12px;
  letter-spacing: -0.02em;
}
.localizacao__address {
  font-size: 16px;
  color: var(--ink-700);
  margin: 0 0 32px;
}

.localizacao__block {
  border-top: 1px solid var(--ink-200);
  padding-top: 24px;
  margin-bottom: 24px;
}
.localizacao__block .eyebrow { margin-bottom: 14px; display: block; }
.localizacao__block p { margin: 0; color: var(--ink-700); }

.hours {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 20px;
  margin: 0;
}
.hours dt {
  font-weight: 700;
  color: var(--ink-1000);
  font-size: 14px;
}
.hours dd {
  margin: 0;
  color: var(--ink-700);
  font-size: 14px;
}

.localizacao__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.localizacao__phone {
  background: var(--green-50);
  border-radius: var(--radius-md);
  padding: 16px 24px;
}
.localizacao__phone-number {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--propet-green-ink);
  margin-top: 4px;
}

/* ============================================================
   DOBRA 13 — CTA FINAL + FOOTER
   ============================================================ */
.cta-final {
  background: var(--propet-blue);
  padding: 80px 0;
  text-align: center;
  color: white;
}
.cta-final h2 {
  color: white;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin: 20px 0 16px;
  letter-spacing: -0.02em;
}
.cta-final p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  margin: 0 0 32px;
}
.cta-final__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer {
  background: var(--ink-1000);
  color: var(--ink-400);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__col p { font-size: 13px; line-height: 1.6; margin: 0 0 16px; }
.footer__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin: 24px 0 12px;
}
.footer__col:first-child .footer__label:first-child { margin-top: 0; }

.footer__brand {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}
.footer__logo { height: 40px; width: auto; }
.footer__brand strong {
  display: block;
  font-family: var(--font-display);
  color: white;
  font-size: 17px;
  font-weight: 800;
}
.footer__brand small { font-size: 11px; color: var(--ink-400); }

.footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ink-900);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  width: fit-content;
  transition: background var(--t-base);
}
.footer__social:hover { background: var(--ink-800); }
.footer__social svg { width: 22px; height: 22px; color: white; }
.footer__social strong {
  color: white;
  font-size: 13px;
  font-weight: 700;
  display: block;
}
.footer__social small { font-size: 11px; color: var(--ink-500); }

.footer__highlight {
  color: var(--propet-green);
  font-weight: 700;
  font-size: 14px;
}

.footer__phone {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: white;
  display: block;
  margin-bottom: 4px;
}
.footer__address { color: white; font-size: 13px; }
.footer__address small { color: var(--ink-500); }

.footer__vet { margin-bottom: 16px; }
.footer__vet strong { color: white; font-size: 13px; }
.footer__crmv {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 2px 0;
}
.footer__crmv--blue { color: var(--propet-blue); }
.footer__crmv--green { color: var(--propet-green); }
.footer__vet small { font-size: 11px; color: var(--ink-500); }

.footer__team { color: var(--ink-500); font-size: 12px; font-style: italic; }

.footer__bottom {
  border-top: 1px solid var(--ink-800);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--ink-500);
}
.footer__bottom p { margin: 0; }

/* ============================================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================================ */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform var(--t-base);
}
.float-whatsapp:hover { transform: scale(1.1); }
.float-whatsapp svg { width: 30px; height: 30px; }

/* ============================================================
   ANIMAÇÕES REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVO — TABLETS (1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__photo { max-width: 480px; margin: 0 auto; }
  .header__nav { display: none; }
  .header__menu-toggle { display: flex; }

  .especialidades__grid { grid-template-columns: repeat(3, 1fr); }
  .bt-grid { grid-template-columns: repeat(2, 1fr); }
  .dif__grid { grid-template-columns: repeat(2, 1fr); }
  .integ__grid { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; }
  .equipe__grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto 40px; }
  .silvestres__inner { grid-template-columns: 1fr; gap: 40px; }
  .amb-grid { grid-template-columns: repeat(3, 1fr); }
  .amb-card--wide { grid-column-end: span 2; }
  .amb-lightbox__info { width: 280px; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .jornada__steps { grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .jornada__steps h3 { font-size: 14px; }
  .jornada__steps p { font-size: 12px; }
  .faq__grid { grid-template-columns: 1fr; }
  .localizacao__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVO — MOBILE (768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --container-pad: 20px; }
  html { scroll-padding-top: 72px; }
  body { overflow-x: hidden; } /* safety contra overflow horizontal */

  /* Botões: permite quebra em mobile pra não estourar largura */
  .btn {
    padding: 14px 20px;
    font-size: 13px;
    word-break: keep-all;
  }
  .btn--lg {
    padding: 16px 24px;
    font-size: 14px;
  }

  .header__inner { height: 72px; gap: 12px; }
  .header__logo { height: 36px; }
  .header__name { font-size: 15px; }
  .header__tagline { display: none; }
  .header__cta span { display: none; }
  .header__cta { padding: 12px; min-width: 44px; min-height: 44px; }
  .header__menu-toggle { min-width: 44px; min-height: 44px; padding: 12px; }

  /* Menu mobile como drawer */
  .header__nav {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    bottom: 0;
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px 24px;
    gap: 0;
    border-top: 1px solid var(--ink-200);
    transform: translateX(100%);
    transition: transform var(--t-base);
    display: flex;
  }
  .header__nav.is-open { transform: translateX(0); }
  .header__nav a {
    width: 100%;
    padding: 18px 0;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink-1000);
    border-bottom: 1px solid var(--ink-100);
  }
  .header__nav a::after { display: none; }

  .section { padding: 64px 0; }
  .hero { padding: 110px 0 64px; }

  .hero { padding: 96px 0 48px; }
  .hero__inner { gap: 32px; }
  .hero__headline { margin: 14px 0 16px; }
  .hero__sub { font-size: 15px; margin-bottom: 24px; }
  .hero__ctas { flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .hero__ctas .btn { width: 100%; }
  .hero__trust { padding-top: 16px; }
  .hero__trust-item { font-size: 13px; }

  /* Slideshow: garante ocupar toda a coluna mobile e mantém aspect 4:5 */
  .hero__photo {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
  .hero__slideshow {
    aspect-ratio: 4/5;
    min-height: 380px;
    width: 100%;
  }
  .hero__slide {
    /* Mobile: object-position um pouco mais alto pra preservar rostos */
    object-position: center 20%;
  }

  .hero__photo-badge {
    max-width: 220px;
    bottom: 16px;
    left: 16px;
    padding: 12px 16px;
  }
  .hero__photo-badge strong { font-size: 14px; }
  .hero__photo-badge small { font-size: 11px; }

  /* Trust bar: 5º item ocupa as 2 cols pra ficar centralizado */
  .trust-bar { padding: 24px 0; }
  .trust-bar__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 24px 20px;
  }
  .trust-bar__item {
    border-right: none;
    border-bottom: 1px solid var(--blue-200);
    padding: 0 0 18px;
  }
  .trust-bar__item:nth-child(5) {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
  }
  .trust-bar__item:nth-child(4) { border-bottom: none; padding-bottom: 0; }

  /* Especialidades: cards mais compactos pra economizar scroll */
  .especialidades__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .esp-card { padding: 16px 14px; }
  .esp-card__icon {
    width: 36px; height: 36px;
    font-size: 16px;
    margin-bottom: 10px;
  }
  .esp-card h3 { font-size: 14px; line-height: 1.2; margin-bottom: 4px; }
  .esp-card p { font-size: 11px; line-height: 1.4; }

  /* Banho e Tosa */
  .bt-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .bt-card { padding: 20px 16px; }
  .bt-card__icon { width: 40px; height: 40px; font-size: 18px; margin-bottom: 12px; }
  .bt-card h3 { font-size: 14px; line-height: 1.2; margin-bottom: 6px; }
  .bt-card p { font-size: 12px; line-height: 1.45; }
  .bt-badge { font-size: 12px; padding: 7px 13px; gap: 8px; }
  .bt-ctas { flex-direction: column; gap: 10px; }
  .bt-ctas .btn { width: 100%; }

  .dif__grid { grid-template-columns: 1fr; gap: 16px; }
  .dif-card { padding: 24px 22px; }
  .dif-card__num { font-size: 32px; margin-bottom: 12px; }
  .dif-card h3 { font-size: 17px; }
  .dif__quote { font-size: 16px; margin-top: 32px; }

  /* Equipe */
  .vet-card__body { padding: 24px 22px; }
  .vet-card__body h3 { font-size: 20px; }

  /* Integrativas */
  .integ-card { padding: 28px 24px; }
  .integ-card__icon { width: 56px; height: 56px; font-size: 24px; margin-bottom: 18px; }
  .integ-card h3 { font-size: 20px; }
  .bonus-bar { flex-direction: column; align-items: flex-start; gap: 20px; padding: 28px 24px; text-align: left; }
  .bonus-bar__inner h3 { font-size: 18px; }
  .bonus-bar__badge { align-self: center; width: 80px; height: 80px; }
  .bonus-bar__badge strong { font-size: 20px; }

  /* Silvestres */
  .silvestres__photo-badge {
    max-width: 240px;
    bottom: 16px;
    left: 16px;
    padding: 12px 16px;
  }
  .silvestres__mini-grid { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
  .silvestres__title { margin: 14px 0 16px; }
  .silvestres__sub { font-size: 15px; margin-bottom: 24px; }
  .silvestres__features { padding-top: 24px; gap: 16px; }

  /* Ambientes — galeria com filtros */
  .amb-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .amb-card--wide { grid-column-end: span 2; }
  .amb-card--tall { grid-row-end: span 80; }
  .amb-filter-btn { padding: 8px 14px; font-size: 13px; }
  .amb-filter-btn__count { padding: 1px 6px; font-size: 10px; }
  .amb-tagline { font-size: 22px; }
  .amb-lightbox { padding: 16px; }
  .amb-lightbox__content { flex-direction: column; gap: 16px; }
  .amb-lightbox__info { width: 100%; }
  .amb-lightbox__info h3 { font-size: 22px; margin-bottom: 8px; }
  .amb-lightbox__info p { font-size: 14px; }
  .amb-lightbox__nav { width: 42px; height: 42px; font-size: 22px; }
  .amb-lightbox__nav--prev { left: 12px; }
  .amb-lightbox__nav--next { right: 12px; }
  .amb-lightbox__close { width: 38px; height: 38px; top: 12px; right: 12px; }
  .amb-card:hover { transform: none; box-shadow: none; } /* tap, não hover */
  .amb-card__overlay { opacity: 1; background: linear-gradient(180deg, transparent 65%, rgba(11,28,38,0.85) 100%); }
  .amb-card__overlay-title { font-size: 13px; }
  .amb-card__overlay-tag { font-size: 10px; padding: 2px 7px; margin-bottom: 5px; }

  /* Avaliações */
  .avaliacoes__hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 24px;
    gap: 20px;
  }
  .avaliacoes__hero-rating { align-items: center; }
  .avaliacoes__hero-text {
    border-left: none;
    border-top: 1px solid var(--blue-200);
    padding-left: 0;
    padding-top: 18px;
    align-items: center;
  }
  .avaliacoes__hero-badge {
    flex-direction: row;
    justify-content: center;
    padding: 12px 16px;
  }
  .reviews__grid { grid-template-columns: 1fr; gap: 14px; }
  .review-card { padding: 20px; }
  .avaliacoes__google-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px;
    text-align: left;
  }
  .avaliacoes__google-link .btn { width: 100%; }
  .avaliacoes__bridge h3 { font-size: 20px; line-height: 1.3; padding: 0 8px; }

  /* Jornada: conector vertical em mobile (substitui o horizontal) */
  .jornada__steps {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-left: 30px;
    position: relative;
  }
  .jornada__steps::before {
    display: block;
    top: 30px;
    bottom: 30px;
    left: 0;
    right: auto;
    width: 2px;
    height: auto;
    transform: translateX(28px);
  }
  .jornada__steps li {
    text-align: left;
    padding: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
  }
  .step__num { margin-bottom: 0; width: 50px; height: 50px; font-size: 18px; }
  .step__num--lg { width: 56px; height: 56px; font-size: 20px; }
  .jornada__steps h3 { margin-bottom: 4px; margin-top: 8px; grid-column: 2; }
  .jornada__steps p { grid-column: 2; font-size: 13px; }
  .jornada__time { padding: 16px 20px; font-size: 13px; }
  .jornada__time p { font-size: 13px; line-height: 1.5; }

  /* FAQ */
  .faq-item summary { padding: 16px 18px; gap: 12px; }
  .faq__q { font-size: 14px; }
  .faq-item p { padding: 0 18px 16px; font-size: 13px; }
  .faq__help { padding: 28px 24px; }
  .faq__help h3 { font-size: 20px; }
  .faq__help-ctas { flex-direction: column; align-items: flex-start; gap: 12px; }
  .faq__help-ctas .btn { width: 100%; }
  .faq__help-or { display: none; }
  .faq__help-phone { font-size: 18px; }

  /* Localização */
  .localizacao__title { margin: 14px 0 12px; }
  .localizacao__address { margin-bottom: 24px; }
  .localizacao__ctas { flex-direction: column; }
  .localizacao__ctas .btn { width: 100%; }
  .localizacao__map iframe { height: 320px; }
  .localizacao__phone { padding: 14px 20px; }
  .localizacao__phone-number { font-size: 22px; }

  /* CTA final */
  .cta-final { padding: 56px 0; }
  .cta-final h2 { font-size: 28px; margin: 14px 0 12px; }
  .cta-final p { font-size: 15px; margin-bottom: 24px; }
  .cta-final__ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-final__ctas .btn { width: 100%; max-width: none; }

  /* Footer */
  .footer { padding: 48px 0 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; }

  /* WhatsApp flutuante: esconde quando CTA final está visível pra não competir */
  .float-whatsapp { width: 54px; height: 54px; bottom: 16px; right: 16px; }
  .float-whatsapp svg { width: 26px; height: 26px; }
  .cta-final ~ .float-whatsapp,
  body:has(.cta-final.is-visible) .float-whatsapp { opacity: 0.92; }
}

/* ============================================================
   ACESSIBILIDADE — REDUÇÃO DE MOVIMENTO
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }

  /* Slideshow: para a animação e mostra só a primeira foto pra quem tem reduced motion */
  .hero__slide { animation: none !important; opacity: 0 !important; }
  .hero__slide:first-child { opacity: 1 !important; }
}
