/* ==========================================================================
   AGGE Petshop — style.css
   Paleta premium: ameixa (plum) + roxo da marca + dourado (do logo/fachada).
   Tipografia: Fraunces (títulos) + Hanken Grotesk (texto).
   Organização:
     1. Tokens / variáveis
     2. Reset e base
     3. Utilitários (wrap, botões, seções, eyebrow)
     4. Header e navegação
     5. Hero + seletor de espécie
     6. Soluções por espécie
     7. Banho & Tosa
     8. Agendamento (formulário)
     9. Cavalos (linha equina)
    10. Outros pets
    11. Ofertas
    12. Sobre
    13. Avaliações
    14. Localização & contato
    15. FAQ
    16. Footer
    17. Botão flutuante de WhatsApp
    18. Animações e responsividade
   ========================================================================== */

/* 1. TOKENS ---------------------------------------------------------------- */
:root {
  /* Cores da marca (mantidas para reconhecimento) */
  --purple:        #A45B9A;   /* roxo AGGE original */
  --purple-600:    #8E4A81;   /* hover original */

  /* Tons premium derivados da marca */
  --plum-900:      #2C1729;   /* ameixa profunda (hero, footer) */
  --plum-800:      #3B2039;
  --plum-700:      #5A2E54;

  /* Dourado — vindo do cão dourado do logo e do toldo da fachada */
  --gold:          #E0983A;
  --gold-600:      #C9822B;
  --gold-soft:     #F3CE86;

  /* Neutros e tints */
  --bg:            #F5F2F6;   /* fundo geral, leve toque lilás */
  --surface:       #FFFFFF;
  --lavender:      #CAC4D5;   /* tint da marca */
  --mist:          #D1DAE5;   /* tint da marca */
  --line:          #E7E0EA;

  --ink:           #2B2230;   /* texto principal (quase preto ameixado) */
  --ink-soft:      #6E6478;   /* texto secundário */
  --ink-on-dark:   #F4ECF2;
  --ink-on-dark-soft: #C9B6C6;

  /* Tipografia — títulos em Patua One, textos em Cabin */
  --font-display: "Patua One", Georgia, serif;
  --font-body:    "Cabin", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Espaçamento e forma */
  --wrap:      1180px;
  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 18px 50px -24px rgba(44, 23, 41, .45);
  --shadow-sm: 0 8px 24px -14px rgba(44, 23, 41, .40);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);
  --ease:      cubic-bezier(.22, .61, .36, 1);
}

/* 2. RESET / BASE ---------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
/* Patua One tem um só peso (400) e já é encorpada: usamos weight 400 e
   evitamos tracking negativo para o texto não ficar apertado/pesado. */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.14; margin: 0; letter-spacing: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* Foco visível para acessibilidade */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 50%; top: -60px;
  transform: translateX(-50%);
  background: var(--plum-900); color: #fff;
  padding: .6rem 1.2rem; border-radius: 0 0 10px 10px;
  z-index: 200; transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* 3. UTILITÁRIOS ----------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }

.section { padding-block: var(--section-y); }

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-title { font-size: clamp(1.85rem, 1.3rem + 2.6vw, 3.1rem); }
.section-lead { color: var(--ink-soft); font-size: 1.1rem; margin-top: 1rem; max-width: 54ch; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--purple-600);
  margin-bottom: 1.1rem;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(224,152,58,.2); }
.eyebrow-light { color: var(--gold-soft); }

/* Botões */
.btn {
  --btn-bg: var(--purple);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: .95rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  text-align: center; line-height: 1.1;
}
.btn .ic { width: 1.15em; height: 1.15em; fill: currentColor; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--purple); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--purple-600); box-shadow: var(--shadow); }

.btn-gold { background: var(--gold); color: var(--plum-900); box-shadow: 0 10px 30px -16px rgba(224,152,58,.9); }
.btn-gold:hover { background: var(--gold-600); }

.btn-ghost { background: transparent; color: var(--ink); border-color: color-mix(in srgb, var(--ink) 22%, transparent); }
.btn-ghost:hover { border-color: var(--purple); color: var(--purple-600); }

.btn-block { width: 100%; }

/* 4. HEADER ---------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 74px; }

.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand img { width: 52px; height: auto; }
.brand-word { font-family: var(--font-display); font-weight: 400; font-size: 1.25rem; color: var(--plum-800); letter-spacing: 0; }
.brand-word em { font-style: normal; color: var(--purple); }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav > a {
  padding: .5rem .8rem; border-radius: 999px; font-weight: 600; font-size: .95rem; color: var(--ink);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav > a:hover { color: var(--purple-600); background: color-mix(in srgb, var(--purple) 10%, transparent); }
.nav .nav-cta { background: var(--purple); color: #fff; padding-inline: 1.15rem; }
.nav .nav-cta:hover { background: var(--purple-600); color: #fff; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; justify-content: center;
  width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--surface); cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin-inline: auto; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 5. HERO com vídeo de fundo ---------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;                 /* cria contexto de empilhamento próprio */
  min-height: calc(100vh - 74px);     /* fallback p/ navegadores sem svh */
  min-height: clamp(520px, calc(100svh - 74px), 840px);
  display: flex;
  align-items: center;
  padding-block: clamp(3rem, 7vw, 5rem);
  overflow: hidden;
  background: var(--plum-900);        /* cor de base enquanto o vídeo carrega */
  color: var(--ink-on-dark);
}
/* Vídeo cobrindo toda a hero, sem distorção e sem barras */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;               /* não bloqueia os cliques */
  z-index: -2;
}
/* Overlay: escuro à esquerda (atrás do texto) e transparente à direita,
   preservando o cão do vídeo visível. */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(30, 15, 28, 0.92) 0%,
      rgba(30, 15, 28, 0.74) 42%,
      rgba(30, 15, 28, 0.32) 72%,
      rgba(30, 15, 28, 0.12) 100%),
    linear-gradient(180deg, rgba(30, 15, 28, 0.15) 0%, transparent 30%, rgba(30, 15, 28, 0.35) 100%);
}
/* Conteúdo à esquerda, largura controlada para linhas curtas */
.hero-grid { position: relative; z-index: 1; width: 100%; }
.hero-copy { max-width: 620px; }

.hero .eyebrow { color: var(--gold-soft); }
.hero-title { font-size: clamp(2rem, 1.2rem + 3.6vw, 3.55rem); font-weight: 400; letter-spacing: 0; line-height: 1.14; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.hero-title-accent { display: block; color: var(--gold-soft); font-style: normal; font-weight: 400; }
.hero-sub { margin-top: 1.3rem; font-size: clamp(1.02rem, 1rem + .35vw, 1.2rem); color: var(--ink-on-dark); max-width: 46ch; text-shadow: 0 1px 10px rgba(0,0,0,.4); }

/* Seletor de espécie (assinatura) */
.species-picker { margin-top: 2rem; }
.species-picker-label { font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-on-dark-soft); margin-bottom: .8rem; }
.species-tabs { display: flex; flex-wrap: wrap; gap: .5rem; }
.species-tab {
  font-family: var(--font-body); font-weight: 600; font-size: .95rem; color: #fff;
  background: color-mix(in srgb, #000 26%, transparent);
  border: 1.5px solid color-mix(in srgb, #fff 30%, transparent);
  padding: .55rem 1rem; border-radius: 999px; cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all .22s var(--ease);
}
.species-tab:hover { border-color: var(--gold-soft); color: #fff; }
.species-tab.is-active { background: var(--gold); border-color: var(--gold); color: var(--plum-900); font-weight: 700; }
.species-line { margin-top: 1.1rem; min-height: 3.2em; color: var(--ink-on-dark); font-size: 1.05rem; max-width: 44ch; text-shadow: 0 1px 10px rgba(0,0,0,.45); }

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }

/* 6. CATEGORIAS POR ESPÉCIE (cards com foto) ------------------------------ */
/* Todos os cards são visualmente idênticos (mesmo tamanho, fundo, borda e
   hierarquia). O card de cavalos NÃO recebe destaque especial. */
.species-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.cat-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--purple) 40%, var(--line)); }
.cat-card-media { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--lavender); }
.cat-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.cat-card:hover .cat-card-media img { transform: scale(1.04); }
.cat-card-body { display: flex; flex-direction: column; gap: .35rem; padding: 1.15rem 1.3rem 1.35rem; flex: 1; }
.cat-card-body h3 { font-size: 1.3rem; color: var(--plum-800); }
.cat-card-body p { color: var(--ink-soft); font-size: .95rem; flex: 1; }
.cat-card-go { font-weight: 700; font-size: .92rem; color: var(--purple-600); margin-top: .3rem; }
.cat-card:hover .cat-card-go { color: var(--purple); }

/* 7. BANHO & TOSA ---------------------------------------------------------- */
.section-tosa { background: linear-gradient(180deg, var(--bg), color-mix(in srgb, var(--mist) 45%, var(--bg))); }
.tosa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.tosa-benefits { margin: 1.6rem 0; display: grid; gap: .7rem; }
.tosa-benefits li { position: relative; padding-left: 1.9rem; color: var(--ink); }
.tosa-benefits li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 12px; height: 7px;
  border-left: 2.5px solid var(--gold); border-bottom: 2.5px solid var(--gold);
  transform: rotate(-45deg);
}
.tosa-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.tosa-figure { margin: 0; position: relative; }
.tosa-figure img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.tosa-figure figcaption {
  position: absolute; left: 1rem; bottom: 1rem;
  background: color-mix(in srgb, var(--plum-900) 85%, transparent); color: #fff;
  font-size: .82rem; font-weight: 600; padding: .4rem .9rem; border-radius: 999px; backdrop-filter: blur(4px);
}

/* 8. AGENDAMENTO ----------------------------------------------------------- */
.section-agenda { background: var(--plum-900); color: var(--ink-on-dark); }
.section-agenda .eyebrow { color: var(--gold-soft); }
.section-agenda .section-lead { color: var(--ink-on-dark-soft); }
.agenda-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.agenda-intro .section-title { color: #fff; }
.agenda-note { margin-top: 1.4rem; font-size: .9rem; color: var(--ink-on-dark-soft); border-left: 3px solid var(--gold); padding-left: 1rem; }

.agenda-form {
  background: var(--surface); color: var(--ink); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; box-shadow: var(--shadow);
}
.field { display: flex; flex-direction: column; gap: .4rem; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 700; color: var(--plum-800); }
.field label span { color: var(--purple); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: .75rem .85rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--purple);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--purple) 22%, transparent);
}
.field.has-error input, .field.has-error select { border-color: #d64545; box-shadow: 0 0 0 3px rgba(214,69,69,.18); }
.form-error { grid-column: 1 / -1; color: #d64545; font-weight: 600; font-size: .92rem; margin: 0; }
.agenda-form .btn-block { grid-column: 1 / -1; margin-top: .3rem; }

/* 9. CAVALOS (LINHA EQUINA) ------------------------------------------------ */
.section-equino {
  position: relative;
  background:
    radial-gradient(90% 120% at 100% 0%, color-mix(in srgb, var(--gold) 30%, var(--plum-900)) 0%, transparent 45%),
    var(--plum-800);
  color: var(--ink-on-dark);
}
.equino-top { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.equino-head { max-width: 60ch; margin-bottom: 0; }
.equino-media { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid color-mix(in srgb, #fff 14%, transparent); aspect-ratio: 4 / 3; }
.equino-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.equino-title { color: #fff; }
.equino-lead { color: var(--ink-on-dark-soft); }
.equino-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; margin-bottom: 2.5rem; }
.equino-cat {
  border: 1px solid color-mix(in srgb, var(--gold-soft) 30%, transparent);
  border-radius: var(--radius-sm); padding: 1.1rem 1.2rem;
  font-family: var(--font-display); font-size: 1.05rem; color: var(--gold-soft);
  background: color-mix(in srgb, #fff 4%, transparent);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.equino-cat:hover { background: color-mix(in srgb, var(--gold) 16%, transparent); transform: translateY(-3px); }
.equino-cta {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.2rem;
  border-top: 1px solid color-mix(in srgb, #fff 15%, transparent); padding-top: 2rem;
}
.equino-cta p { font-size: 1.15rem; color: #fff; max-width: 40ch; font-family: var(--font-display); }

/* 10. OUTROS PETS ---------------------------------------------------------- */
.others-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.other-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem;
  display: flex; flex-direction: column; gap: .6rem; transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.other-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.other-card h3 { font-size: 1.2rem; color: var(--plum-800); }
.other-card p { color: var(--ink-soft); font-size: .95rem; flex: 1; }
.link-wa { font-weight: 700; color: var(--purple-600); font-size: .92rem; }
.link-wa:hover { color: var(--purple); }

/* 11. OFERTAS -------------------------------------------------------------- */
.section-ofertas { background: color-mix(in srgb, var(--lavender) 32%, var(--bg)); }
.ofertas-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.ofertas-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.ofertas-media { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.ofertas-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 5 / 4; display: block; }
.ofertas-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: clamp(1.6rem, 3vw, 2.4rem); }
.ofertas-list li {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.5rem;
  display: grid; gap: .25rem; box-shadow: var(--shadow-sm);
}
.ofertas-list strong { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; color: var(--plum-800); }
.ofertas-list span:last-child { color: var(--ink-soft); font-size: .95rem; }
.ofertas-tag { justify-self: start; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--purple-600); background: color-mix(in srgb, var(--purple) 12%, transparent); padding: .2rem .6rem; border-radius: 999px; margin-bottom: .3rem; }

/* 12. SOBRE ---------------------------------------------------------------- */
.sobre-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.sobre-media img { border-radius: var(--radius); box-shadow: var(--shadow); border: 6px solid #fff; }
.sobre-copy p { color: var(--ink-soft); margin-top: 1rem; }
.sobre-values { margin-top: 1.6rem; display: grid; gap: .8rem; }
.sobre-values li { display: grid; gap: .1rem; padding-left: 1.2rem; border-left: 3px solid var(--gold); }
.sobre-values strong { color: var(--plum-800); font-size: 1.02rem; }
.sobre-values span { color: var(--ink-soft); font-size: .92rem; }

/* 13. AVALIAÇÕES ----------------------------------------------------------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.review-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; margin: 0;
  box-shadow: var(--shadow-sm);
}
.review-card .stars { color: var(--gold); letter-spacing: .12em; font-size: 1.05rem; }
.review-card p { margin: .8rem 0 1.1rem; color: var(--ink); font-size: 1.02rem; }
.review-card cite { font-style: normal; font-weight: 700; color: var(--plum-800); }
.review-card cite span { font-weight: 500; color: var(--ink-soft); }
.review-card.is-placeholder { border-style: dashed; background: color-mix(in srgb, var(--lavender) 14%, var(--surface)); }
.review-card.is-placeholder p { color: var(--ink-soft); font-style: italic; }
.reviews-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

/* 14. LOCALIZAÇÃO ---------------------------------------------------------- */
.section-local { background: linear-gradient(180deg, var(--bg), color-mix(in srgb, var(--mist) 40%, var(--bg))); }
.local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: stretch; }
.contact-list { margin: 1.6rem 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: 1rem; }
.contact-ic { font-size: 1.35rem; flex-shrink: 0; width: 2.4rem; height: 2.4rem; display: grid; place-items: center; background: color-mix(in srgb, var(--purple) 12%, transparent); border-radius: 12px; }
.contact-list strong { display: block; color: var(--plum-800); font-family: var(--font-display); font-weight: 400; font-size: 1.05rem; margin-bottom: .1rem; }
.contact-list div { color: var(--ink-soft); }
.contact-list a { color: var(--purple-600); font-weight: 600; }
.contact-list a:hover { color: var(--purple); text-decoration: underline; }
.local-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.4rem; }
.local-social { display: flex; gap: 1.2rem; }
.local-social a { font-weight: 700; color: var(--plum-800); position: relative; }
.local-social a::after { content: "↗"; margin-left: .2rem; color: var(--purple); }
.local-social a:hover { color: var(--purple); }
.local-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 340px; border: 6px solid #fff; }
.local-map iframe { width: 100%; height: 100%; min-height: 328px; border: 0; display: block; }

/* 15. FAQ ------------------------------------------------------------------ */
.faq-wrap { max-width: 820px; margin-inline: auto; }
.faq-head { text-align: center; margin-inline: auto; }
.faq-list { display: grid; gap: .8rem; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .3rem 1.3rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq-item[open] { border-color: color-mix(in srgb, var(--purple) 35%, var(--line)); box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1rem 0; font-family: var(--font-display); font-size: 1.12rem;
  color: var(--plum-800); display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--font-body); font-size: 1.5rem; color: var(--purple); transition: transform .25s var(--ease); flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding-bottom: 1.1rem; color: var(--ink-soft); }
.faq-body a { color: var(--purple-600); font-weight: 600; text-decoration: underline; }

/* 16. FOOTER --------------------------------------------------------------- */
.site-footer { background: var(--plum-900); color: var(--ink-on-dark-soft); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer-brand img { width: 66px; margin-bottom: 1rem; }
.footer-brand p { max-width: 30ch; font-size: .95rem; }
.footer-col h3 { font-family: var(--font-display); color: #fff; font-size: 1.05rem; margin-bottom: 1rem; font-weight: 400; }
.footer-col a { display: block; padding: .3rem 0; color: var(--ink-on-dark-soft); font-size: .95rem; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--gold-soft); }
.footer-addr { margin-top: .6rem; font-size: .9rem; line-height: 1.5; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem;
  border-top: 1px solid color-mix(in srgb, #fff 12%, transparent); padding-block: 1.4rem 1.6rem; font-size: .85rem;
}
.footer-bottom a { color: var(--gold-soft); }
.footer-bottom a:hover { text-decoration: underline; }

/* 17. BOTÃO FLUTUANTE WHATSAPP --------------------------------------------- */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 1.6rem); bottom: clamp(1rem, 3vw, 1.6rem); z-index: 90;
  display: inline-flex; align-items: center; gap: .6rem;
  background: #25D366; color: #08351a; font-weight: 800; font-size: .98rem;
  padding: .8rem 1.15rem; border-radius: 999px;
  box-shadow: 0 14px 34px -12px rgba(37,211,102,.7);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.02); }
.wa-float svg { width: 26px; height: 26px; fill: currentColor; }
.wa-float-label { white-space: nowrap; }

/* 17b. INSTAGRAM ----------------------------------------------------------- */
.section-instagram { background: linear-gradient(180deg, var(--bg), color-mix(in srgb, var(--lavender) 30%, var(--bg))); }
.insta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-bottom: 2rem; }
.ig-item { margin: 0; }
.ig-item a { display: block; aspect-ratio: 1 / 1; overflow: hidden; border-radius: var(--radius-sm); background: var(--lavender); }
.ig-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.ig-item a:hover img { transform: scale(1.05); }
.insta-cta { text-align: center; }
/* Botão do Instagram — na identidade do site (roxo), sem competir com o
   verde do WhatsApp. */
.btn-insta { background: linear-gradient(120deg, var(--plum-800), var(--purple)); color: #fff; box-shadow: var(--shadow-sm); }
.btn-insta:hover { background: linear-gradient(120deg, var(--plum-900), var(--purple-600)); }

/* 17c. CHAMADA FINAL WHATSAPP (banda com imagem) -------------------------- */
.cta-band { position: relative; overflow: hidden; isolation: isolate; color: var(--ink-on-dark); text-align: center; }
.cta-band-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, color-mix(in srgb, var(--plum-900) 80%, transparent), color-mix(in srgb, var(--plum-900) 90%, transparent));
}
.cta-band-inner { padding-block: clamp(3rem, 7vw, 5.5rem); display: flex; flex-direction: column; align-items: center; }
.cta-band .eyebrow { justify-content: center; }
.cta-band-title { font-family: var(--font-display); font-weight: 400; color: #fff; font-size: clamp(1.8rem, 1.3rem + 2.4vw, 3rem); max-width: 22ch; }
.cta-band-sub { color: var(--ink-on-dark-soft); max-width: 46ch; margin-top: .7rem; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.6rem; }
.btn-ghost-light { color: #fff; border-color: color-mix(in srgb, #fff 40%, transparent); }
.btn-ghost-light:hover { border-color: var(--gold-soft); color: var(--gold-soft); }

/* 18. ANIMAÇÕES E RESPONSIVIDADE ------------------------------------------- */
/* Reveal ao rolar */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* Tablets grandes */
@media (max-width: 1024px) {
  .species-grid { grid-template-columns: repeat(2, 1fr); }
  .equino-grid { grid-template-columns: repeat(2, 1fr); }
  .others-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Tablet / menu mobile */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: 1rem clamp(1.1rem, 4vw, 2rem) 1.4rem;
    box-shadow: var(--shadow);
    transform: translateY(-140%); transition: transform .35s var(--ease);
    max-height: calc(100dvh - 74px); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav > a { padding: .85rem 1rem; font-size: 1.05rem; border-radius: var(--radius-sm); }
  .nav .nav-cta { text-align: center; margin-top: .4rem; }

  .tosa-grid, .agenda-grid, .ofertas-inner, .sobre-grid, .local-grid, .equino-top { grid-template-columns: 1fr; }
  .sobre-media { order: 2; }
  .equino-media { order: 2; aspect-ratio: 16 / 9; }
  .equino-cta { flex-direction: column; align-items: flex-start; }
  .ofertas-list { grid-template-columns: repeat(3, 1fr); }
}

/* Celular */
@media (max-width: 560px) {
  :root { --radius: 16px; }
  /* Enquadra melhor o cão (à direita/centro do vídeo) no formato retrato */
  .hero__video { object-position: 64% center; }
  .hero-copy { max-width: 100%; }
  .species-grid, .others-grid, .equino-grid, .reviews-grid, .ofertas-list { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .agenda-form { grid-template-columns: 1fr; padding: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .hero-actions .btn, .tosa-actions .btn, .local-actions .btn, .ofertas-actions .btn, .cta-band-actions .btn { width: 100%; }
  .cta-band-actions { width: 100%; }
  .wa-float-label { display: none; }
  .wa-float { padding: .85rem; }
  .brand-word { display: none; }
}

/* Preferência por menos movimento:
   por escolha do cliente, o vídeo do hero continua tocando para TODOS os
   visitantes. Ainda assim reduzimos as demais animações da página (reveals,
   transições) para respeitar parcialmente a preferência. O poster segue como
   imagem inicial (atributo "poster") enquanto o vídeo carrega ou se ele falhar. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
