:root {
  --navy: #002448;
  --navy-ink: #0a3a6b;
  --cyan: #55becf;
  --cyan-deep: #3baec6;
  --cyan-soft: #e6f7f9;
  --white: #ffffff;
  --gray-50: #f6f9fb;
  --gray-100: #eef2f6;
  --gray-500: #5b6b7a;
  --gray-800: #223142;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 36, 72, 0.08);
  --max-width: 1140px;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Noto Sans Display", "Segoe UI", sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* ===== Buttons — pill compacto, como no site da franquia ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.85rem;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-ink); }

.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-ink); }

.btn-ghost { background: transparent; color: var(--navy); border-color: transparent; padding: 10px 14px; }
.btn-ghost:hover { color: var(--cyan-deep); }

.btn-outline-dark { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

.btn-outline-light { background: transparent; border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); }

.btn-lg { padding: 13px 26px; font-size: 0.95rem; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--gray-100);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-img { height: 34px; width: auto; }
.logo-badge {
  background: var(--cyan);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 4px 10px;
  border-radius: 999px;
}
.logo-badge-light { background: rgba(255,255,255,0.12); color: var(--cyan); }

.main-nav {
  display: flex;
  gap: 26px;
}
.main-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.88rem;
}
.main-nav a:hover { color: var(--cyan-deep); }

.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  display: block;
}

/* ===== Faixa de destaque (ciano / navy) — padrão de bloco cheio da franquia ===== */
.highlight {
  background: var(--cyan);
  padding: 60px 0 56px;
  text-align: center;
}
.highlight-eyebrow {
  display: inline-block;
  background: rgba(0, 36, 72, 0.1);
  color: var(--navy);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 18px;
}
.highlight h1 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 900;
  color: var(--navy);
}
.highlight h1 strong { color: var(--navy); text-decoration: underline; text-decoration-color: rgba(0,36,72,0.35); text-underline-offset: 4px; }
.highlight-lead {
  color: rgba(0, 36, 72, 0.8);
  font-size: 1.05rem;
  max-width: 56ch;
  margin: 0 auto 28px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 44px; }

/* ===== Banner fotográfico (topo e home care) ===== */
.photo-banner { display: block; height: clamp(200px, 30vw, 380px); overflow: hidden; }
.photo-banner img { width: 100%; height: 100%; object-fit: cover; }
.photo-banner-contain { background: var(--navy); }
.photo-banner-contain img { object-fit: contain; }

.boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 24px rgba(0, 36, 72, 0.12);
}
.box-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
}
.box-icon svg { width: 100%; height: 100%; fill: var(--navy); }
.box p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--gray-500);
  display: flex;
  flex-direction: column;
}
.box p strong { color: var(--navy); font-size: 1.15rem; font-weight: 800; }

/* Variante navy da faixa (usada na localização) */
.highlight-navy { background: var(--navy); color: var(--white); text-align: left; }
.highlight-navy .highlight-eyebrow { background: rgba(255,255,255,0.12); color: var(--cyan); }
.highlight-navy h2 { color: var(--white); }

/* ===== Sections ===== */
.section { padding: 84px 0; }

.section-eyebrow {
  display: inline-block;
  color: var(--cyan-deep);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--navy);
  margin: 0 0 16px;
  font-weight: 900;
}
.section-lead {
  color: var(--gray-500);
  max-width: 65ch;
  font-size: 1.02rem;
  margin-bottom: 32px;
}
.section-note { margin-top: 28px; color: var(--gray-500); }
.section-note a { color: var(--cyan-deep); font-weight: 700; }

/* ===== Vacinas ===== */
.plano-vacinal {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 8px 0 20px;
}
.plano-ilustra { width: 130px; height: auto; flex-shrink: 0; }
.plano-vacinal h2 { margin: 0 0 8px; }
.plano-vacinal .section-lead { margin-bottom: 0; }

.plano-subtitulo {
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 20px;
}

.life-stages {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  margin-bottom: 44px;
}
.stage-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 18px 8px;
}
.stage-box img { width: 40px; height: 40px; object-fit: contain; }
.stage-box p { margin: 0; font-size: 0.76rem; font-weight: 700; color: var(--navy); }

.vaccines-eyebrow { display: block; margin-top: 4px; }

.vaccines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
}
.vaccines-grid span {
  position: relative;
  padding-left: 20px;
  color: var(--gray-800);
  font-size: 0.94rem;
}
.vaccines-grid span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-deep);
}

/* ===== Galeria ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}

/* ===== Localização ===== */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.info-block { margin-bottom: 28px; }
.info-block h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.02rem;
  margin: 0 0 10px;
}
.info-icon { width: 20px; height: 20px; fill: var(--cyan); flex-shrink: 0; }
.info-block p { margin: 0 0 14px; color: rgba(255,255,255,0.75); }
.info-block a { color: var(--cyan); text-decoration: none; font-weight: 600; }
.info-block a:hover { color: var(--white); }

.hours-table { border-collapse: collapse; width: 100%; max-width: 320px; }
.hours-table td {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
}
.hours-table td:last-child { text-align: right; color: rgba(255,255,255,0.65); }

.loc-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 40px 32px;
  min-height: 420px;
  border-radius: var(--radius);
  border: 4px solid var(--white);
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.06) 2px, transparent 2px),
    radial-gradient(circle at 62% 58%, rgba(255,255,255,0.06) 2px, transparent 2px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,0.06) 2px, transparent 2px),
    radial-gradient(circle at 85% 30%, rgba(255,255,255,0.06) 2px, transparent 2px),
    var(--navy-ink);
  background-size: 60px 60px, 90px 90px, 70px 70px, 100px 100px, auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.loc-map:hover { transform: translateY(-2px); box-shadow: 0 24px 48px rgba(0,0,0,0.4); }
.loc-map-pin {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cyan);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.3);
}
.loc-map-pin svg { width: 32px; height: 32px; fill: var(--navy); }
.loc-map-label { font-size: 1.15rem; font-weight: 800; color: var(--white); }
.loc-map-address { font-size: 0.9rem; color: rgba(255,255,255,0.7); max-width: 30ch; }

/* ===== Avaliações ===== */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.reviews-score {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.reviews-score-number { font-size: 2.2rem; font-weight: 900; color: var(--navy); }
.reviews-stars { color: #f5a623; font-size: 1.2rem; letter-spacing: 2px; }
.reviews-summary-text { margin: 0; color: var(--gray-500); font-size: 0.95rem; }
.reviews-summary-text strong { color: var(--navy); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 32px;
}
.review-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
}
.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.review-name { margin: 0; font-weight: 700; font-size: 0.92rem; color: var(--navy); }
.review-head .review-stars { color: #f5a623; font-size: 0.85rem; letter-spacing: 1px; }
.review-text { margin: 0; color: var(--gray-500); font-size: 0.9rem; line-height: 1.6; }

/* ===== Agendamento ===== */
.agendar-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.agendar-copy p { color: var(--gray-500); font-size: 1.02rem; }
.agendar-img { margin-top: 24px; max-width: 200px; }

.agendar-form {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 18px;
}
.agendar-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
}
.agendar-form input,
.agendar-form select {
  border: 1.5px solid var(--gray-100);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--white);
}
.agendar-form input:focus,
.agendar-form select:focus {
  outline: none;
  border-color: var(--cyan);
}
.form-note { font-size: 0.78rem; color: var(--gray-500); font-weight: 400; margin: 0; }

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, 0.85); padding-top: 56px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-logo { height: 30px; width: auto; margin-bottom: 2px; }
.footer-inner p { font-size: 0.9rem; margin: 2px 0; color: rgba(255, 255, 255, 0.6); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; align-items: flex-start; }
.footer-links a { color: rgba(255, 255, 255, 0.85); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { text-align: center; padding: 20px 24px; font-size: 0.78rem; color: rgba(255, 255, 255, 0.5); }

/* ===== WhatsApp float ===== */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cyan);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0, 36, 72, 0.3);
  text-decoration: none;
  z-index: 150;
}
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--navy); }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .header-actions .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .boxes { grid-template-columns: repeat(2, 1fr); }
  .loc-grid, .agendar-grid { grid-template-columns: 1fr; }
  .vaccines-grid { grid-template-columns: repeat(2, 1fr); }
  .plano-vacinal { flex-direction: column; text-align: center; }
  .life-stages { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .boxes { grid-template-columns: 1fr; }
  .vaccines-grid { grid-template-columns: 1fr; }
  .life-stages { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-summary { flex-direction: column; align-items: flex-start; gap: 8px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 220px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .section { padding: 56px 0; }
  .highlight { padding: 48px 0 44px; }
  .photo-banner { height: 180px; }
  .footer-inner { flex-direction: column; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    box-shadow: var(--shadow);
    gap: 16px;
  }
}
