/* =======================================================
   Clínica Veterinária do Village
   Paleta extraída do logo oficial:
     teal #26938C · rosa #F7ADBE · grafite #484C4D
   ======================================================= */

:root {
  --teal:        #26938C;
  --teal-600:    #1F7B75;
  --teal-dark:   #0E4C47;
  --teal-deep:   #093A36;
  --teal-soft:   #F1F9F8;
  --teal-line:   #D7EBE9;

  --pink:        #F7ADBE;
  --pink-deep:   #F08CA4;
  --pink-soft:   #FEF2F5;

  --ink:         #484C4D;
  --ink-soft:    #6E7476;
  --white:       #FFFFFF;

  --radius:      16px;
  --radius-lg:   24px;
  --shadow-sm:   0 2px 10px rgba(14, 76, 71, .06);
  --shadow:      0 12px 32px rgba(14, 76, 71, .10);
  --shadow-lg:   0 24px 60px rgba(14, 76, 71, .16);

  --wrap:        1180px;
  --header-h:    88px;

  --sans:        "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif:       "Fraunces", Georgia, "Times New Roman", serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
svg { fill: currentColor; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-600); }

h1, h2, h3 { margin: 0; line-height: 1.15; color: var(--ink); font-weight: 800; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--teal); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: 999px;
  font-weight: 700; font-size: .95rem; line-height: 1;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }

.btn--teal   { background: var(--teal); color: #fff; box-shadow: 0 6px 18px rgba(38,147,140,.30); }
.btn--teal:hover { background: var(--teal-600); color: #fff; box-shadow: 0 10px 26px rgba(38,147,140,.38); }

.btn--pink   { background: var(--pink); color: var(--teal-deep); box-shadow: 0 6px 18px rgba(240,140,164,.32); }
.btn--pink:hover { background: var(--pink-deep); color: var(--teal-deep); box-shadow: 0 10px 26px rgba(240,140,164,.42); }

.btn--ghost  { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost:hover { background: rgba(255,255,255,.16); color: #fff; }

.btn--outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn--outline:hover { background: var(--teal); color: #fff; }

.btn--lg { padding: 16px 30px; font-size: 1rem; }

/* ---------- topbar ---------- */
.topbar {
  background: var(--teal-deep); color: rgba(255,255,255,.80);
  font-size: .82rem; font-weight: 500;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  min-height: 40px; flex-wrap: wrap;
}
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item svg { width: 15px; height: 15px; color: var(--pink); flex: none; }
.topbar__sep { width: 1px; height: 16px; background: rgba(255,255,255,.22); }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--teal-line);
  transition: box-shadow .25s ease;
}
.header.is-stuck { box-shadow: var(--shadow-sm); }

.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 20px;
}
.header__logo img { width: 168px; height: auto; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav > a {
  color: var(--ink); font-weight: 600; font-size: .93rem;
  position: relative; padding: 6px 0; white-space: nowrap;
}
.nav > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--pink-deep);
  transition: width .22s ease; border-radius: 2px;
}
.nav > a:not(.btn):hover { color: var(--teal); }
.nav > a:not(.btn):hover::after,
.nav > a.is-active::after { width: 100%; }
.nav > a.is-active { color: var(--teal); }
.nav__cta { margin-left: 6px; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 0 11px;
  background: var(--teal-soft); border: none; border-radius: 12px; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2.5px; width: 100%; background: var(--teal);
  border-radius: 2px; transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- padrão de patinhas ---------- */
.hero__paws, .why__paws {
  position: absolute; inset: 0; pointer-events: none; opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150' viewBox='0 0 150 150'%3E%3Cg fill='%23ffffff'%3E%3Cellipse cx='30' cy='36' rx='6' ry='8'/%3E%3Cellipse cx='45' cy='28' rx='6' ry='8'/%3E%3Cellipse cx='60' cy='33' rx='6' ry='8'/%3E%3Cellipse cx='45' cy='52' rx='13' ry='11'/%3E%3Cellipse cx='100' cy='108' rx='5' ry='7'/%3E%3Cellipse cx='113' cy='101' rx='5' ry='7'/%3E%3Cellipse cx='126' cy='106' rx='5' ry='7'/%3E%3Cellipse cx='113' cy='122' rx='11' ry='9'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 150px 150px;
}

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1000px 520px at 82% 12%, rgba(38,147,140,.42), transparent 62%),
    linear-gradient(160deg, var(--teal-dark) 0%, var(--teal-deep) 100%);
  color: #fff;
  padding-block: 72px 96px;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.06fr .94fr;
  gap: 40px; align-items: end;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 14px; font-size: .82rem; font-weight: 800;
  letter-spacing: .10em; text-transform: uppercase; color: var(--teal);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--pink-deep); border-radius: 2px; }
.eyebrow--light { color: var(--pink); }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
  font-weight: 700; color: #fff; letter-spacing: -.015em;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--pink); display: inline-block; }

.hero__lead {
  font-size: 1.06rem; color: rgba(255,255,255,.82);
  max-width: 54ch; margin-bottom: 26px;
}

.hero__features {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 22px; margin-bottom: 30px; max-width: 520px;
}
.hero__features li {
  display: flex; align-items: center; gap: 11px;
  font-size: .93rem; font-weight: 600; color: rgba(255,255,255,.94);
}
.hero__ficon {
  display: grid; place-items: center; flex: none;
  width: 38px; height: 38px; border-radius: 11px;
  background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.16);
  color: var(--pink);
}
.hero__ficon svg { width: 19px; height: 19px; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; }

.hero__media { position: relative; display: flex; justify-content: center; align-items: flex-end; }
.hero__media::before {
  content: ""; position: absolute; bottom: -6%; left: 50%; transform: translateX(-50%);
  width: 104%; aspect-ratio: 1; max-width: 520px;
  background: radial-gradient(circle at 50% 60%, rgba(247,173,190,.26), transparent 64%);
  border-radius: 50%;
}
/* recorte com fundo transparente, apoiado na base da seção */
.hero__media img {
  position: relative; width: 100%; max-width: 420px; height: auto;
  filter: drop-shadow(0 24px 42px rgba(0,0,0,.40));
}

/* ---------- cards de info sobrepostos ---------- */
.infocards { position: relative; }
/* os cards sobem sobre a base do hero — a folga de 96px embaixo do hero
   garante que a sobreposição não corte as patas do cachorro */
.infocards__inner {
  position: relative; z-index: 5; margin-top: -62px;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px;
}
.infocard {
  background: #fff; border-radius: var(--radius-lg); padding: 30px 32px;
  box-shadow: var(--shadow-lg); border-top: 5px solid transparent;
}
.infocard--pink { border-top-color: var(--pink); }
.infocard--teal { border-top-color: var(--teal); }

/* card com foto ao lado do texto.
   Seletor com 2 classes de propósito: o breakpoint de 680px redefine
   .infocard { padding } mais abaixo e empataria na especificidade. */
.infocards .infocard--foto { padding: 0; overflow: hidden; display: grid; grid-template-columns: 215px 1fr; }
.infocard__media { position: relative; }
.infocard__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.infocard__body { padding: 28px 30px; }


.infocard__head { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.infocard__head h2 { font-size: 1.12rem; font-weight: 800; }
.infocard__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; flex: none; }
.infocard__icon svg { width: 22px; height: 22px; }
.infocard--pink .infocard__icon { background: var(--pink-soft); color: var(--pink-deep); }
.infocard--teal .infocard__icon { background: var(--teal-soft); color: var(--teal); }

.infocard address { font-style: normal; color: var(--ink-soft); line-height: 1.75; margin-bottom: 14px; }

.hours { margin: 0 0 14px; }
.hours > div {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 8px 0; border-bottom: 1px dashed var(--teal-line);
}
.hours > div:last-child { border-bottom: none; }
.hours dt { color: var(--ink-soft); }
.hours dd { margin: 0; font-weight: 700; color: var(--ink); }

.infocard__link { font-weight: 700; font-size: .92rem; }

/* ---------- seções ---------- */
.section { padding-block: 88px; }
.section--soft { background: var(--teal-soft); }

.section__head { text-align: center; max-width: 660px; margin: 0 auto 48px; }
.section__head .eyebrow { justify-content: center; }
.section__title {
  font-family: var(--serif); font-weight: 700; letter-spacing: -.015em;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem); margin-bottom: 14px;
}
.section__sub { color: var(--ink-soft); font-size: 1.02rem; margin: 0; }
.section__head--light { max-width: 820px; }
.section__head--light .section__title { color: #fff; }
.section__head--light .section__sub { color: rgba(255,255,255,.78); }

/* ---------- equipe ---------- */
.profissional {
  display: grid; grid-template-columns: 340px 1fr; gap: 44px; align-items: stretch;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
}

/* painel escuro atrás do recorte, igual à lógica do hero */
.profissional__foto {
  position: relative; display: flex; align-items: flex-end; justify-content: center;
  background: linear-gradient(165deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding-top: 34px;
}
.profissional__foto::before {
  content: ""; position: absolute; inset: 0; opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='%23ffffff'%3E%3Cellipse cx='26' cy='30' rx='5' ry='6.5'/%3E%3Cellipse cx='38' cy='24' rx='5' ry='6.5'/%3E%3Cellipse cx='50' cy='28' rx='5' ry='6.5'/%3E%3Cellipse cx='38' cy='43' rx='10.5' ry='9'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
}
.profissional__foto img {
  position: relative; width: 100%; max-width: 300px; height: auto;
  display: block; filter: drop-shadow(0 16px 28px rgba(9,58,54,.32));
}

.profissional__info { padding: 42px 46px 42px 0; }

.profissional__nome {
  font-family: var(--serif); font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700; color: var(--teal); letter-spacing: -.01em; margin-bottom: 4px;
}
.profissional__cargo {
  margin: 0 0 10px; font-size: .82rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; color: var(--pink-deep);
}
.profissional__formacao {
  margin: 0 0 26px; color: var(--ink-soft); font-size: 1rem;
  max-width: 46ch; padding-bottom: 22px; border-bottom: 1px solid var(--teal-line);
}

.profissional__bloco + .profissional__bloco { margin-top: 24px; }
.profissional__bloco h4 {
  margin: 0 0 12px; font-size: .82rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft);
}

.areas { display: flex; flex-wrap: wrap; gap: 12px; }
.areas li {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 20px 11px 12px; border-radius: 12px;
  background: var(--teal-soft); color: var(--ink);
  font-weight: 700; font-size: .98rem;
}
.areas__icon {
  display: grid; place-items: center; width: 32px; height: 32px; flex: none;
  border-radius: 9px; background: #fff; color: var(--teal);
}
.areas__icon svg { width: 17px; height: 17px; }

.tags { display: flex; flex-wrap: wrap; gap: 9px; }
.tags li {
  padding: 7px 15px; border-radius: 999px;
  background: var(--pink-soft); color: var(--ink);
  border: 1px solid #F8DCE3;
  font-size: .9rem; font-weight: 600;
}

/* ---------- serviços ---------- */
.services {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px;
}
.service {
  background: #fff; border: 1px solid var(--teal-line); border-radius: var(--radius);
  padding: 28px 26px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.service__icon {
  display: grid; place-items: center; width: 52px; height: 52px;
  border-radius: 14px; background: var(--teal-soft); color: var(--teal);
  margin-bottom: 17px; transition: background .22s ease, color .22s ease;
}
.service__icon svg { width: 26px; height: 26px; }
.service:hover .service__icon { background: var(--teal); color: #fff; }
.service h3 { font-size: 1.08rem; margin-bottom: 8px; }
.service p { color: var(--ink-soft); font-size: .94rem; margin: 0; }

/* ---------- categorias de animais ---------- */
.animals {
  margin-top: 46px; padding: 26px 32px;
  background: var(--pink-soft); border-radius: var(--radius-lg);
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center;
}
.animals__label {
  margin: 0; font-weight: 800; font-size: .8rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--pink-deep);
}
.animals__list { display: flex; flex-wrap: wrap; gap: 14px 26px; justify-content: center; }
.animals__list li {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: .95rem; color: var(--ink);
}
.animals__dot {
  display: grid; place-items: center; width: 40px; height: 40px;
  background: #fff; border-radius: 50%; color: var(--teal);
  box-shadow: 0 3px 10px rgba(240,140,164,.22);
}
.animals__dot svg { width: 21px; height: 21px; }

/* ---------- por que a village ---------- */
.why {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--teal-dark), var(--teal-deep));
  color: #fff; padding-block: 80px;
}
.why .wrap { position: relative; z-index: 1; }
.why__list {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 26px;
}
.why__list li { text-align: center; }
.why__icon {
  display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 16px;
  border-radius: 18px; background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16); color: var(--pink);
}
.why__icon svg { width: 29px; height: 29px; }
.why__list h3 { font-size: 1rem; color: #fff; margin-bottom: 8px; }
.why__list p { font-size: .9rem; color: rgba(255,255,255,.74); margin: 0; }

/* ---------- avaliações (carrossel lento) ---------- */
.reviews {
  overflow: hidden; padding-block: 8px 4px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.reviews__track {
  display: flex; gap: 24px; width: max-content;
  animation: reviews-scroll 60s linear infinite;
}
.reviews:hover .reviews__track,
.reviews:focus-within .reviews__track { animation-play-state: paused; }

@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 12px)); } /* metade da faixa + metade do gap */
}

.review {
  flex: none; width: 370px;
  background: #fff; border-radius: var(--radius-lg); padding: 28px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--teal-line);
  display: flex; flex-direction: column; gap: 14px;
}
.review__stars { display: flex; gap: 3px; color: #FBBC04; }
.review__stars svg { width: 18px; height: 18px; }
.review__text { margin: 0; font-size: 1rem; color: var(--ink); line-height: 1.6; flex: 1; }
.review__foot { display: flex; align-items: center; gap: 12px; }
.review__avatar {
  display: grid; place-items: center; width: 44px; height: 44px; flex: none;
  border-radius: 50%; background: var(--teal); color: #fff;
  font-weight: 800; font-size: 1rem;
}
.review__name { font-weight: 700; font-size: .95rem; line-height: 1.3; }
.review__src { font-size: .8rem; color: var(--ink-soft); display: flex; align-items: center; gap: 5px; }
.review__src svg { width: 13px; height: 13px; }

.reviews__cta { text-align: center; margin-top: 36px; }

/* ---------- galeria ---------- */
/* 3 colunas x 2 linhas preenchidas exatamente pelas 4 fotos:
   filhote ocupa a coluna 1 inteira, duas fotos no topo e a larga embaixo. */
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px; gap: 18px;
}
.gallery__item {
  position: relative; margin: 0; overflow: hidden;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26px 18px 14px;
  background: linear-gradient(transparent, rgba(9,58,54,.86));
  color: #fff; font-size: .86rem; font-weight: 600;
}

/* ---------- contato ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact .section__head { text-align: left; margin: 0 0 28px; }
.contact .eyebrow { justify-content: flex-start; }
.contact .section__title { text-align: left; }
.contact .section__sub { text-align: left; margin-bottom: 28px; }

.contact__list { display: grid; gap: 20px; margin-bottom: 30px; }
.contact__list li { display: flex; gap: 15px; align-items: flex-start; }
.contact__icon {
  display: grid; place-items: center; width: 46px; height: 46px; flex: none;
  border-radius: 13px; background: #fff; color: var(--teal); box-shadow: var(--shadow-sm);
}
.contact__icon svg { width: 22px; height: 22px; }
.contact__list div { line-height: 1.65; color: var(--ink-soft); font-size: .96rem; }
.contact__list strong { color: var(--ink); font-size: 1rem; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 13px; }

.contact__map {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); min-height: 440px; background: #fff;
}
.contact__map iframe { width: 100%; height: 100%; min-height: 440px; border: 0; display: block; }

/* ---------- footer ---------- */
.footer { background: var(--teal-deep); color: rgba(255,255,255,.72); padding-top: 64px; }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px;
  padding-bottom: 46px;
}
.footer__logo {
  display: inline-block; background: #fff; border-radius: 14px;
  padding: 12px 16px; margin-bottom: 18px;
}
.footer__logo img { width: 158px; height: auto; }
.footer__brand p { font-size: .93rem; max-width: 42ch; }

.footer__social { display: flex; gap: 11px; margin-top: 18px; }
.footer__social a {
  display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: 11px; background: rgba(255,255,255,.09);
  color: #fff; transition: background .2s ease, transform .2s ease;
}
.footer__social a:hover { background: var(--pink); color: var(--teal-deep); transform: translateY(-2px); }
.footer__social svg { width: 19px; height: 19px; }

.footer__col { display: flex; flex-direction: column; gap: 9px; }
.footer__col h3 {
  color: #fff; font-size: .82rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 8px;
}
.footer__col a { color: rgba(255,255,255,.72); font-size: .93rem; transition: color .18s ease; }
.footer__col a:hover { color: var(--pink); }
.footer__col--info p { font-size: .93rem; margin: 0 0 12px; line-height: 1.7; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-block: 22px; text-align: center;
}
.footer__bottom p { margin: 0; font-size: .86rem; color: rgba(255,255,255,.55); }

/* ---------- whatsapp flutuante ---------- */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  display: grid; place-items: center; width: 58px; height: 58px;
  border-radius: 50%; background: #25D366; color: #fff;
  box-shadow: 0 10px 28px rgba(37,211,102,.42);
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(1.5); opacity: 0;  }
}

/* =======================================================
   RESPONSIVO
   ======================================================= */
@media (max-width: 1024px) {
  .services  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .hero__media img { max-width: 340px; }
}

/* O menu vira sanduíche antes do resto do layout quebrar: com 7 itens,
   "Por que a Village" e o botão de CTA não cabem mais lado a lado. */
@media (max-width: 1150px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 0 0 auto; top: calc(var(--header-h) + 40px);
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; padding: 12px 20px 22px;
    border-bottom: 1px solid var(--teal-line); box-shadow: var(--shadow);
    transform: translateY(-140%); transition: transform .3s ease; z-index: 99;
  }
  .nav.is-open { transform: translateY(0); }
  .nav > a { padding: 14px 4px; border-bottom: 1px solid var(--teal-line); font-size: 1rem; }
  .nav > a:not(.btn)::after { display: none; }
  .nav__cta { margin: 16px 0 0; justify-content: center; border-bottom: none; }
}

@media (max-width: 900px) {
  .hero { padding-block: 48px 72px; }

  .profissional { grid-template-columns: 1fr; gap: 0; }
  .profissional__foto { padding-top: 28px; }
  .profissional__foto img { max-width: 250px; }
  .profissional__info { padding: 32px 30px 36px; }
  .hero__inner { grid-template-columns: 1fr; gap: 0; }
  .hero__copy { padding-bottom: 34px; text-align: center; }
  .hero .eyebrow, .hero__lead { margin-inline: auto; }
  .hero__features { max-width: 460px; margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__media { order: 2; }
  .hero__media img { max-width: 290px; }

  .infocards__inner { grid-template-columns: 1fr; margin-top: -48px; }
  .infocards .infocard--foto { grid-template-columns: 1fr; }
  .infocard__media { height: 250px; }

  .contact { grid-template-columns: 1fr; gap: 34px; }
  .contact__map, .contact__map iframe { min-height: 330px; }

  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .section { padding-block: 62px; }
  .topbar__inner { flex-direction: column; gap: 4px; padding-block: 8px; }
  .topbar__sep { display: none; }
  .services  { grid-template-columns: 1fr; }
  .why__list { grid-template-columns: 1fr; gap: 22px; text-align: left; }
  .why__list li { display: grid; grid-template-columns: auto 1fr; gap: 4px 16px; text-align: left; }
  .why__icon { grid-row: span 2; margin: 0; }
  .hero__features { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .review { width: 290px; padding: 24px; }
  .animals { flex-direction: column; gap: 18px; }
  .footer__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery__item--wide { grid-column: span 1; }
  .infocard { padding: 26px 24px; }
}

/* ---------- acessibilidade: movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reviews__track { animation: none; }
  .reviews { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .whatsapp-float::after { animation: none; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
