/* ════════════════════════════════════════════════════════════
   Vet Viajante — style.css
   Estilos globais compartilhados por todas as páginas.
   ════════════════════════════════════════════════════════════

   ÍNDICE DE SEÇÕES
   ──────────────────────────────────────────────────────────
    1. ⚙️  CONFIGURAÇÕES  → cores, tamanhos (edite aqui!)
    2. Reset             → zeragem de margens/paddings
    3. Layout            → container, seções, utilitários
    4. Tipografia        → tags, subtítulos, descrições
    5. Botões            → primário, contorno, tamanhos
    6. Header            → barra de navegação + hamburger
    7. Hero              → banner principal (index.html)
    8. Sobre             → seção "Quem somos"
    9. Serviços          → grid de 6 cards de serviços
   10. Calculadora       → ferramenta NER
   11. Diferenciais      → números de destaque (fundo escuro)
   12. Depoimentos       → avaliações de tutores
   13. Transparência     → Q&A em dois colunas
   14. CTA               → seção de chamada para ação
   15. FAQ               → acordeão de perguntas
   16. Footer            → rodapé com 4 colunas
   17. WhatsApp Fixo     → botão flutuante verde
   18. Modal             → formulário de agendamento
   19. Scroll Reveal     → animação de entrada dos elementos
   20. Responsivo        → tablet e celular

   ════════════════════════════════════════════════════════════ */


@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* ════════════════════════════════════════════════════════════
   1. ⚙️  CONFIGURAÇÕES — EDITE AQUI PARA MUDAR O VISUAL
   ════════════════════════════════════════════════════════════
   
   Para mudar as CORES do site, edite os valores abaixo.
   Use um site como coolors.co para escolher novas cores.

   Para mudar os ARREDONDAMENTOS dos cards e botões,
   edite os valores de --r, --rs e --rl.
   ════════════════════════════════════════════════════════════ */

:root {
  /* ── Paleta de cores ─────────────────────────────── */
  --dk:  #081214;  /* Verde-azulado super escuro (Obsidian/Charcoal) */
  --dk-deep: #050a0b; /* Tom absoluto para fundos animados */
  --md:  #14b8a6;  /* Teal médio (hover, destaques secundários) */
  --br:  #00d2b4;  /* Teal vibrante (Medical Cyan - botões e destaques primários) */
  --lt:  #f8fafc;  /* Slate 50 (Fundo claro bem limpo) */
  --ltr: #f1f5f9;  /* Slate 100 (Fundo claro secundário) */
  --tx:  #0f172a;  /* Slate 900 (Texto principal) */
  --mu:  #64748b;  /* Slate 500 (Texto secundário) */
  --wh:  #ffffff;  /* Branco puro */
  --go:  #fbbf24;  /* Dourado Amber */

  /* ── Arredondamento de bordas ────────────────────── */
  --r:   16px;  /* Cards, modais, campos de formulário */
  --rs:  10px;  /* Botões menores, badges */
  --rl:  24px;  /* Cards maiores, imagens */

  /* ── Velocidade das animações ────────────────────── */
  --transition: 0.22s ease;

  /* ── Padrões decorativos da marca ────────────────── */
  --paw-pattern-soft: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg fill='%23e4f7f9' fill-opacity='.12'%3E%3Ccircle cx='60' cy='78' r='18'/%3E%3Ccircle cx='34' cy='40' r='10'/%3E%3Ccircle cx='51' cy='23' r='9'/%3E%3Ccircle cx='69' cy='23' r='9'/%3E%3Ccircle cx='86' cy='40' r='10'/%3E%3C/g%3E%3C/svg%3E");
  --paw-pattern-bright: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg transform='rotate(-18 60 60)' fill='%231ac8d4' fill-opacity='.11'%3E%3Ccircle cx='60' cy='78' r='18'/%3E%3Ccircle cx='34' cy='40' r='10'/%3E%3Ccircle cx='51' cy='23' r='9'/%3E%3Ccircle cx='69' cy='23' r='9'/%3E%3Ccircle cx='86' cy='40' r='10'/%3E%3C/g%3E%3C/svg%3E");
  --paw-overlay-subtle:
    var(--paw-pattern-soft) 0 0 / 640px 437px repeat;
  --paw-overlay:
    var(--paw-pattern-soft) 10% 18% / 525px 379px repeat,
    var(--paw-pattern-bright) 190px 110px / 437px 320px repeat;
  --paw-overlay-dense:
    var(--paw-pattern-soft) 8% 16% / 466px 350px repeat,
    var(--paw-pattern-bright) 150px 86px / 379px 277px repeat;
}


/* ════════════════════════════════════════════════════════════
   2. RESET — Normalização de estilos padrão do navegador
   ════════════════════════════════════════════════════════════ */

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

/* Garante que [hidden] nunca seja sobrescrito por display de outras regras */
[hidden] { display: none !important; }

body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  color: var(--tx);
  background: var(--wh);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
textarea { resize: vertical; font-family: inherit; }

/* ════════════════════════════════════════════════════════════
   3. LAYOUT — Container, seções e utilitários gerais
   ════════════════════════════════════════════════════════════ */
.container    { max-width: 1200px; margin: 0 auto; }
.sec          { padding: 120px 2rem; }
.sec-white    { background: var(--wh); }
.sec-lt       { background: var(--lt); }
.sec-ltr      { background: var(--ltr); }
.text-center  { text-align: center; }

/* ════════════════════════════════════════════════════════════
   4. TIPOGRAFIA — Tags, títulos e textos de apoio
   ════════════════════════════════════════════════════════════ */
.tag {
  display: inline-block;
  background: var(--lt);
  color: var(--md);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.tag-inv { background: rgba(26,200,212,.12); color: var(--br); }

h2.st     { font-size: clamp(22px, 2.8vw, 34px); font-weight: 500; color: var(--tx); line-height: 1.25; margin-bottom: 12px; }
h2.st-inv { color: var(--wh); }

.sd {
  font-size: 15px;
  color: var(--mu);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.sd-inv { color: rgba(255,255,255,.6); }

/* ════════════════════════════════════════════════════════════
   5. BOTÕES — Estilos dos botões usados em todo o site
   ════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--rs);
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--br);
  color: var(--dk);
}
.btn-primary:hover {
  background: #22d8e5;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(26,200,212,.35);
}
.btn-primary:active { transform: translateY(0) scale(0.97); box-shadow: none; }

.btn-outline {
  background: transparent;
  color: var(--wh);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-outline:hover {
  border-color: var(--br);
  color: var(--br);
  transform: translateY(-2px);
}
.btn-outline:active { transform: translateY(0) scale(0.97); }

.btn-lg   { padding: 14px 32px; font-size: 15px; border-radius: var(--r); }
.btn-sm   { padding: 7px 16px; font-size: 12px; }
.btn-cta  { padding: 15px 38px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ════════════════════════════════════════════════════════════
   6. HEADER — Barra de navegação fixa + menu mobile
   ════════════════════════════════════════════════════════════ */
.hd {
  background:
    var(--paw-overlay-subtle),
    linear-gradient(135deg, rgba(8,63,73,.94), rgba(11,94,108,.88));
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 200;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 36px rgba(4,39,45,.14);
  backdrop-filter: blur(18px);
}
.hd::before,
.hd::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
}
.hd::before {
  width: 240px;
  height: 240px;
  top: -155px;
  left: -50px;
  background: radial-gradient(circle, rgba(26,200,212,.28) 0, rgba(26,200,212,.08) 45%, transparent 72%);
  animation: headerGlow 9s ease-in-out infinite;
}
.hd::after {
  width: 180px;
  height: 180px;
  right: -40px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(240,251,252,.16) 0, rgba(26,200,212,.06) 42%, transparent 74%);
  animation: headerGlow 12s ease-in-out infinite reverse;
}

.hd-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hd-paw {
  width: 36px; height: 36px;
  background: var(--br);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.hd-name { color: var(--wh); font-size: 18px; font-weight: 500; letter-spacing: .5px; }
.hd-name span { color: var(--br); }

.hd-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.hd-nav > a {
  color: rgba(255,255,255,.7);
  font-size: 13px;
  transition: color var(--transition);
}
.hd-nav > a:not(.btn) {
  position: relative;
}
.hd-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--br), transparent);
  opacity: 0;
  transform: scaleX(.35);
  transform-origin: center;
  transition: opacity var(--transition), transform var(--transition);
}
.hd-nav > a:hover { color: var(--br); }
.hd-nav > a:not(.btn):hover::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Hamburger */
.hd-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.hd-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--wh);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.hd-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hd-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hd-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════════════════════
   7. HERO — Banner principal da página inicial
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    var(--paw-overlay-dense),
    radial-gradient(circle at 16% 18%, rgba(26,200,212,.18), transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(240,251,252,.1), transparent 20%),
    linear-gradient(135deg, var(--dk-deep) 0%, var(--dk) 48%, #0a5561 100%);
  padding: 140px 2rem 120px;
  text-align: left;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,.04), transparent 42%),
    radial-gradient(circle at 22% 78%, rgba(255,255,255,.06) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 32%, rgba(255,255,255,.05) 0 2px, transparent 3px);
  opacity: .8;
  z-index: -2;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
}
.hero-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-orb,
.hero-line,
.hero-paw {
  position: absolute;
  pointer-events: none;
}
.hero-orb {
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.18), rgba(26,200,212,.18) 40%, rgba(26,200,212,0) 70%);
  filter: blur(10px);
  opacity: .85;
  animation: orbFloat 14s ease-in-out infinite;
}
.hero-orb-a {
  width: 280px;
  height: 280px;
  top: 10%;
  left: 6%;
}
.hero-orb-b {
  width: 220px;
  height: 220px;
  top: 6%;
  right: 12%;
  animation-duration: 18s;
  animation-delay: -4s;
}
.hero-orb-c {
  width: 340px;
  height: 340px;
  right: 20%;
  bottom: -120px;
  opacity: .6;
  animation-duration: 20s;
  animation-delay: -7s;
}
.hero-line {
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(26,200,212,.46), transparent);
  opacity: .4;
  animation: lineGlide 11s ease-in-out infinite;
}
.hero-line-a {
  --line-angle: -14deg;
  width: 220px;
  top: 27%;
  right: 16%;
}
.hero-line-b {
  --line-angle: 14deg;
  width: 180px;
  bottom: 28%;
  left: 12%;
  animation-duration: 13s;
  animation-delay: -3s;
}
.hero-paw {
  width: 118px;
  aspect-ratio: 1;
  opacity: .16;
  background:
    radial-gradient(circle at 50% 67%, rgba(240,251,252,.95) 0 17px, transparent 18px),
    radial-gradient(circle at 26% 30%, rgba(26,200,212,.95) 0 10px, transparent 11px),
    radial-gradient(circle at 42% 16%, rgba(26,200,212,.86) 0 9px, transparent 10px),
    radial-gradient(circle at 58% 16%, rgba(26,200,212,.86) 0 9px, transparent 10px),
    radial-gradient(circle at 74% 30%, rgba(26,200,212,.95) 0 10px, transparent 11px);
  filter: blur(.3px);
  animation: pawFloat 16s ease-in-out infinite;
}
.hero-paw-a {
  --paw-rotate: 18deg;
  top: 18%;
  right: 23%;
}
.hero-paw-b {
  --paw-rotate: -14deg;
  width: 92px;
  bottom: 15%;
  left: 11%;
  opacity: .12;
  animation-duration: 19s;
  animation-delay: -5s;
}
.hero-paw-c {
  --paw-rotate: 12deg;
  width: 70px;
  right: 8%;
  bottom: 21%;
  opacity: .1;
  animation-duration: 14s;
  animation-delay: -2s;
}
.hero-paw-d {
  --paw-rotate: -10deg;
  width: 82px;
  top: 12%;
  left: 24%;
  opacity: .11;
  animation-duration: 17s;
  animation-delay: -6s;
}
.hero-paw-e {
  --paw-rotate: 16deg;
  width: 94px;
  right: 34%;
  bottom: 12%;
  opacity: .13;
  animation-duration: 18s;
  animation-delay: -1s;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(7,63,73,.42);
  border: 1px solid rgba(26,200,212,.28);
  color: var(--br);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: .5px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(4,39,45,.14);
}
.hero h1 {
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 600;
  color: var(--wh);
  line-height: 1.1;
  max-width: 800px;
  margin: 0 0 24px;
  letter-spacing: -1px;
  text-wrap: balance;
}
.hero h1 em { font-style: normal; color: var(--br); }
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.75);
  max-width: 600px;
  margin: 0 0 40px;
  line-height: 1.7;
  text-wrap: pretty;
}
.hero-ctas { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: flex-start;
  margin: 60px 0 0;
  flex-wrap: wrap;
  max-width: 860px;
  padding: 22px 28px;
  border-radius: 26px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(26,200,212,.12);
  box-shadow: 0 24px 50px rgba(4,39,45,.14);
  backdrop-filter: blur(12px);
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 28px; font-weight: 500; color: var(--br); }
.hero-stat span   { font-size: 11px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .8px; }
.divd { width: 1px; height: 40px; background: rgba(255,255,255,.12); align-self: center; }

/* ════════════════════════════════════════════════════════════
   8 a 14. SEÇÕES DO CONTEÚDO (Sobre, Serviços, Calculadora...)
   ════════════════════════════════════════════════════════════ */

/* ── 8. Sobre ────────────────────────────────────────────────── */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sobre-img-wrap {
  position: relative;
  border-radius: var(--rl);
  overflow: hidden;
  height: 420px;
}
.sobre-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.sobre-img-overlay {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--dk);
  border: 1px solid rgba(26,200,212,.3);
  border-radius: var(--r);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.overlay-ico {
  width: 36px; height: 36px;
  background: var(--br);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  min-width: 36px;
}
.overlay-txt strong { display: block; font-size: 13px; font-weight: 500; color: var(--wh); }
.overlay-txt span   { font-size: 11px; color: rgba(255,255,255,.5); }

.sobre-content h2 {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 500;
  margin: 8px 0 16px;
  line-height: 1.3;
}
.sobre-content p   { color: var(--mu); font-size: 14px; line-height: 1.75; margin-bottom: 14px; }

.checks { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.ck     { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--tx); }
.ck-ico {
  width: 20px; height: 20px; min-width: 20px;
  background: var(--br);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  color: var(--dk);
  font-weight: 600;
  margin-top: 1px;
}

/* ── 9. Serviços ─────────────────────────────────────────────── */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  margin-top: 48px;
  text-align: left;
}
.srv {
  background: var(--wh);
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: var(--r);
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.srv:hover {
  border-color: rgba(0, 210, 180, 0.4);
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 32px rgba(0, 210, 180, 0.08);
}
.srv-ic  { width: 46px; height: 46px; background: var(--lt); border-radius: var(--rs); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.srv h3  { font-size: 15px; font-weight: 500; margin-bottom: 7px; }
.srv p   { font-size: 12px; color: var(--mu); line-height: 1.6; }
.srv-bdg { display: inline-block; background: var(--lt); color: var(--md); font-size: 10px; padding: 3px 10px; border-radius: 100px; margin-top: 10px; letter-spacing: .3px; }

/* ── 10. Calculadora Nutricional ─────────────────────────────── */
.calc-card {
  background: var(--wh);
  border: 1px solid rgba(14,125,143,.12);
  border-radius: var(--rl);
  padding: 36px 40px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(11,94,108,.06);
}
.calc-form {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}
.calc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 140px;
}
.calc-field label { font-size: 12px; font-weight: 500; color: var(--mu); }
.calc-field select,
.calc-field input {
  padding: 10px 14px;
  border: 1.5px solid rgba(14,125,143,.2);
  border-radius: var(--rs);
  font-size: 14px;
  color: var(--tx);
  background: var(--wh);
  transition: border-color var(--transition);
  width: 100%;
}
.calc-field select:focus,
.calc-field input:focus {
  outline: none;
  border-color: var(--br);
}
.calc-result { min-height: 48px; }
.calc-output {
  background: var(--lt);
  border-radius: var(--r);
  padding: 20px 24px;
  margin-bottom: 16px;
  animation: fadeIn 0.3s ease;
}
.calc-num {
  font-size: 38px;
  font-weight: 500;
  color: var(--dk);
  line-height: 1;
  margin-bottom: 6px;
}
.calc-num span { font-size: 16px; color: var(--mu); font-weight: 400; }
.calc-output p { font-size: 13px; color: var(--mu); }
.calc-err { color: #c0392b; font-size: 13px; }
.calc-note { font-size: 11px; color: var(--mu); margin-top: 16px; line-height: 1.6; }
.calc-note sup { font-size: 9px; }

/* ── 11. Diferenciais ────────────────────────────────────────── */
.dif {
  background:
    var(--paw-overlay),
    linear-gradient(135deg, var(--dk-deep) 0%, var(--dk) 62%, #0f172a 100%);
}
.dif-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 48px;
  text-align: left;
}
.dif-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: var(--r);
  padding: 32px 28px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.dif-card:hover { background: rgba(255,255,255,.06); border-color: rgba(255, 255, 255, 0.15); transform: translateY(-4px); }
.dif-n  { font-size: 34px; font-weight: 500; color: var(--br); margin-bottom: 8px; }
.dif-card h3 { font-size: 14px; font-weight: 500; color: var(--wh); margin-bottom: 7px; }
.dif-card p  { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ── 12. Depoimentos ─────────────────────────────────────────── */
.dep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
  margin-top: 48px;
  text-align: left;
}
.dep {
  background: var(--wh);
  border: 1px solid rgba(14,125,143,.08);
  border-radius: var(--r);
  padding: 26px 22px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.dep:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(14,125,143,.1); }
.dep-st   { color: var(--go); font-size: 13px; margin-bottom: 11px; }
.dep p    { font-size: 13px; color: var(--tx); line-height: 1.7; margin-bottom: 18px; }
.dep-au   { display: flex; align-items: center; gap: 10px; }
.dep-av   { width: 34px; height: 34px; background: var(--lt); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 500; color: var(--dk); min-width: 34px; }
.dep-au strong { display: block; font-size: 13px; font-weight: 500; }
.dep-au span   { font-size: 11px; color: var(--mu); }

.g-reviews {
  margin-top: 48px;
  padding: 28px;
  border: 1px solid rgba(14,125,143,.1);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(240,251,252,.92));
  box-shadow: 0 24px 60px rgba(11,94,108,.08);
  text-align: left;
}
.g-reviews-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.g-reviews-brand strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--tx);
}
.g-reviews-brand span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--mu);
}
.g-reviews-nav { display: flex; align-items: center; gap: 10px; }
.g-reviews-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(14,125,143,.12);
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  color: var(--dk);
  font-size: 24px;
  line-height: 1;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.g-reviews-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(26,200,212,.4);
  background: var(--wh);
}
.g-reviews-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}
.g-reviews-status {
  padding: 18px 20px;
  border-radius: var(--r);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(14,125,143,.08);
  color: var(--mu);
  font-size: 14px;
  line-height: 1.7;
}
.g-reviews-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.g-reviews-viewport::-webkit-scrollbar { display: none; }
.g-reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
}
.g-review-card {
  min-height: 100%;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(14,125,143,.08);
  box-shadow: 0 16px 32px rgba(11,94,108,.06);
  scroll-snap-align: start;
}
.g-review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.g-review-avatar {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  object-fit: cover;
  background: var(--lt);
  border: 2px solid rgba(26,200,212,.14);
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--dk);
}
.g-review-author {
  min-width: 0;
}
.g-review-author strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--tx);
}
.g-review-author a {
  color: inherit;
  transition: color var(--transition);
}
.g-review-author a:hover { color: var(--md); }
.g-review-date {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--mu);
}
.g-review-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 14px;
}
.g-review-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--go);
}
.g-review-text {
  font-size: 13px;
  color: var(--tx);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.g-reviews-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.g-reviews-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(74,122,131,.28);
  transition: transform var(--transition), background var(--transition);
}
.g-reviews-dot.active {
  background: var(--br);
  transform: scale(1.15);
}

/* ── 13. Transparência ───────────────────────────────────────── */
.obj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 48px;
  text-align: left;
}
.obj {
  border: 1px solid rgba(14,125,143,.1);
  border-left: 3px solid var(--br);
  border-radius: var(--r);
  padding: 22px;
  transition: box-shadow var(--transition);
}
.obj:hover { box-shadow: 0 4px 16px rgba(26,200,212,.1); }
.obj h4 { font-size: 13px; font-weight: 500; margin-bottom: 7px; }
.obj p  { font-size: 12px; color: var(--mu); line-height: 1.6; }

/* ── 14. CTA — Seção de chamada para ação ───────────────────── */
.cta-sec {
  background:
    var(--paw-overlay),
    linear-gradient(135deg, #0a515d 0%, var(--dk) 72%, #0a6977 100%);
  padding: 80px 2rem;
}
.cta-sec h2 { font-size: clamp(22px, 3vw, 36px); font-weight: 500; color: var(--wh); max-width: 580px; margin: 0 auto 14px; line-height: 1.3; }
.cta-sec p  { color: rgba(255,255,255,.6); font-size: 15px; max-width: 460px; margin: 0 auto 32px; line-height: 1.7; }
.cta-bdgs   { display: flex; gap: 22px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.cta-b      { display: flex; align-items: center; gap: 7px; font-size: 11px; color: rgba(255,255,255,.5); }
.dot        { width: 5px; height: 5px; background: var(--br); border-radius: 50%; }

/* ════════════════════════════════════════════════════════════
   15. FAQ — Acordeão de perguntas e respostas
   ════════════════════════════════════════════════════════════ */
.faq-list { max-width: 660px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-it   { border: 1px solid rgba(14,125,143,.1); border-radius: var(--rs); overflow: hidden; }

.faq-q {
  width: 100%;
  padding: 16px 18px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  color: var(--tx);
  text-align: left;
  transition: color var(--transition), background var(--transition);
}
.faq-q:hover  { color: var(--md); background: rgba(14,125,143,.03); }
.faq-ic {
  width: 22px; height: 22px; min-width: 22px;
  background: var(--lt);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--md);
  font-weight: 400;
  transition: transform 0.3s, background var(--transition);
  line-height: 1;
}
.faq-it.open .faq-ic { background: var(--br); color: var(--dk); transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  font-size: 13px;
  color: var(--mu);
  line-height: 1.7;
  border-top: 1px solid transparent;
  transition: max-height 0.38s ease, padding 0.3s ease, border-color 0.3s ease;
}
.faq-it.open .faq-a {
  max-height: 300px;
  padding: 14px 18px 18px;
  border-color: rgba(14,125,143,.07);
}

/* ════════════════════════════════════════════════════════════
   16. FOOTER — Rodapé com 4 colunas
   ════════════════════════════════════════════════════════════ */
.footer {
  background:
    var(--paw-overlay-subtle),
    linear-gradient(135deg, #061a20 0%, #071e24 58%, #082a31 100%);
  padding: 56px 2rem 28px;
}
.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.ft-brand h3 { font-size: 17px; font-weight: 500; color: var(--wh); margin-bottom: 8px; }
.ft-brand h3 span { color: var(--br); }
.ft-brand p  { font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 230px; margin-top: 6px; }
.ft-col h4   { font-size: 11px; font-weight: 500; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 14px; }
.ft-col a    { display: block; font-size: 12px; color: rgba(255,255,255,.4); margin-bottom: 7px; transition: color var(--transition); }
.ft-col a:hover { color: var(--br); }

.ft-bot { border-top: 1px solid rgba(255,255,255,.06); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.ft-bot p { font-size: 11px; color: rgba(255,255,255,.28); }
.soc { display: flex; gap: 8px; }
.soc-b {
  width: 30px; height: 30px;
  background: rgba(255,255,255,.06);
  border-radius: var(--rs);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  transition: background var(--transition), color var(--transition);
}
.soc-b:hover { background: var(--br); color: var(--dk); }

/* ════════════════════════════════════════════════════════════
   17. WHATSAPP FIXO — Botão flutuante verde (canto inferior)
   ════════════════════════════════════════════════════════════ */
.wa {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 52px; height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  z-index: 150;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.wa:hover { transform: scale(1.12); box-shadow: 0 6px 24px rgba(37,211,102,.45); }

/* ════════════════════════════════════════════════════════════
   18. MODAL — Formulário de agendamento (abre ao clicar no botão)
   ════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,30,36,.7);
  backdrop-filter: blur(4px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.modal-overlay.active { opacity: 1; }

.modal {
  background: var(--wh);
  border-radius: var(--rl);
  padding: 36px 32px;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.28s ease;
}
.modal-overlay.active .modal { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 30px; height: 30px;
  background: var(--lt);
  border: none;
  border-radius: 50%;
  font-size: 13px;
  color: var(--mu);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.modal-close:hover { background: var(--br); color: var(--dk); }

.modal-icon { font-size: 32px; margin-bottom: 12px; }
.modal h2   { font-size: 22px; font-weight: 500; margin-bottom: 6px; }
.modal-sub  { font-size: 13px; color: var(--mu); margin-bottom: 24px; line-height: 1.6; }

/* Form */
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label { font-size: 12px; font-weight: 500; color: var(--tx); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 1.5px solid rgba(14,125,143,.2);
  border-radius: var(--rs);
  font-size: 14px;
  color: var(--tx);
  background: var(--wh);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--br);
  box-shadow: 0 0 0 3px rgba(26,200,212,.12);
}
.form-group input.input-err,
.form-group select.input-err {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231,76,60,.1);
}
.form-error { font-size: 11px; color: #e74c3c; min-height: 14px; }

/* Success panel */
.modal-success { text-align: center; padding: 16px 0 8px; }
.success-ico   { font-size: 48px; margin-bottom: 16px; }
.modal-success h2 { font-size: 22px; font-weight: 500; margin-bottom: 10px; }
.modal-success p  { font-size: 14px; color: var(--mu); line-height: 1.7; margin-bottom: 24px; }

/* ════════════════════════════════════════════════════════════
   19. SCROLL REVEAL — Animação de entrada dos elementos
       Os elementos com class="reveal" aparecem ao rolar a página
   ════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Animações auxiliares ────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

@keyframes headerGlow {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, 14px, 0) scale(1.08); }
}

@keyframes orbFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(18px, -18px, 0); }
}

@keyframes lineGlide {
  0%, 100% {
    transform: translateX(0) rotate(var(--line-angle, 0deg));
    opacity: .28;
  }
  50% {
    transform: translateX(16px) rotate(var(--line-angle, 0deg));
    opacity: .58;
  }
}

@keyframes pawFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(var(--paw-rotate, 0deg));
  }
  50% {
    transform: translate3d(0, -16px, 0) rotate(calc(var(--paw-rotate, 0deg) + 6deg));
  }
}

/* ════════════════════════════════════════════════════════════
   20. RESPONSIVO — Ajustes para tablet e celular
       Não é necessário editar esta seção para trocar textos
   ════════════════════════════════════════════════════════════ */

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .g-reviews-track { grid-auto-columns: calc((100% - 18px) / 2); }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {

  .sec { padding: 60px 1.25rem; }

  /* Header */
  .hd { padding: 0 1.25rem; position: relative; }
  .hd-hamburger { display: flex; }
  .hd-nav {
    position: absolute;
    top: 68px; left: 0; right: 0;
    background:
      var(--paw-overlay-subtle),
      linear-gradient(180deg, rgba(8,63,73,.98), rgba(11,94,108,.96));
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1.25rem;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    border-top: 1px solid rgba(255,255,255,.06);
    backdrop-filter: blur(20px);
  }
  .hd-nav.open {
    max-height: 400px;
    padding: 16px 1.25rem 24px;
    gap: 14px;
  }
  .hd-nav > a { color: rgba(255,255,255,.75); font-size: 14px; }
  .hd-nav .btn { width: 100%; justify-content: center; }

  /* Hero */
  .hero { padding: 72px 1.25rem 78px; }
  .hero-art { opacity: .82; }
  .hero-orb-a { width: 220px; height: 220px; left: -4%; }
  .hero-orb-c { width: 260px; height: 260px; right: -4%; bottom: -110px; }
  .hero-line-b,
  .hero-paw-c,
  .hero-paw-d { display: none; }
  .hero-stats { gap: 24px; }
  .divd { display: none; }

  /* Sobre */
  .sobre-grid { grid-template-columns: 1fr; gap: 32px; }
  .sobre-img-wrap { height: 260px; }

  /* Serviços */
  .srv-grid { grid-template-columns: 1fr 1fr; }

  /* Calculadora */
  .calc-card { padding: 24px 20px; }
  .calc-form { flex-direction: column; }
  .calc-field { min-width: unset; }

  /* Diferenciais */
  .dif-grid { grid-template-columns: 1fr 1fr; }

  /* Transparência */
  .obj-grid { grid-template-columns: 1fr; }

  /* Google Reviews */
  .g-reviews { padding: 22px; border-radius: 20px; }
  .g-reviews-topbar { align-items: flex-start; flex-direction: column; }
  .g-reviews-nav { width: 100%; justify-content: flex-end; }
  .g-reviews-track { grid-auto-columns: 100%; }

  /* Footer */
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* Modal */
  .modal { padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .hd::before,
  .hd::after,
  .hero-orb,
  .hero-line,
  .hero-paw {
    animation: none !important;
  }
}

/* Small mobile (≤ 480px) */
@media (max-width: 480px) {
  .srv-grid { grid-template-columns: 1fr; }
  .dif-grid { grid-template-columns: 1fr; }
  .dep-grid { grid-template-columns: 1fr; }
  .g-review-card { padding: 18px; }
  .ft-grid  { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 280px; }
  .cta-bdgs { flex-direction: column; align-items: center; gap: 10px; }
}
