
:root {
  --blue: #18A9E6;
  --blue-dark: #0B7FB5;
  --blue-ink: #075F89;
  --green: #8CD63F;
  --green-bright: #A7E34C;
  --white: #FFFFFF;
  --off-white: #F7FAFB;
  --gray-100: #EEF3F5;
  --gray-300: #CFD9DE;
  --text: #1F2D33;
  --muted: #60727B;
  --shadow: 0 22px 60px rgba(31, 45, 51, .12);
  --shadow-soft: 0 12px 32px rgba(31, 45, 51, .09);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

button,
input,
select,
textarea { font: inherit; }

button { cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--text);
  color: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

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

.section { padding: 96px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 99px;
  background: var(--green);
}

h1, h2, h3, p { margin-top: 0; }

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.7rem);
  font-weight: 900;
}

h1 em {
  color: var(--blue-dark);
  font-style: normal;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4vw, 3.7rem);
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
  font-weight: 850;
}

p { color: var(--muted); }

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(24, 169, 230, .24);
}

.btn--primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 14px 28px rgba(11, 127, 181, .28);
}

.btn--ghost {
  border-color: var(--gray-300);
  background: var(--white);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--blue);
  color: var(--blue-dark);
}

.btn--light {
  background: var(--white);
  color: var(--blue-ink);
}

.btn--large {
  min-height: 56px;
  padding-inline: 25px;
}

.btn--full { width: 100%; }

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Header */
.topbar {
  position: relative;
  background: linear-gradient(90deg, #075F89 0%, #0879A8 100%);
  color: var(--white);
}

.topbar::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255,255,255,.14);
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: .82rem;
}

.topbar p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(255,255,255,.9);
}

.topbar a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 4px rgba(167, 227, 76, .17);
}

.status-dot.is-closed {
  background: #D8E0E4;
  box-shadow: none;
}

.nav-shell {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(31,45,51,.06);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 172px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 64px;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
}

.main-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.main-nav a {
  position: relative;
  font-size: .94rem;
  font-weight: 750;
  text-decoration: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.main-nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 12px;
  background: var(--gray-100);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 82px;
  background:
    radial-gradient(circle at 80% 15%, rgba(140, 214, 63, .16), transparent 22%),
    linear-gradient(180deg, #F3FBFE 0%, #FFFFFF 100%);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: 1.15rem;
}

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

.hero__trust {
  display: flex;
  gap: 26px;
  margin-top: 42px;
}

.hero__trust div {
  min-width: 100px;
  border-left: 3px solid var(--green);
  padding-left: 12px;
}

.hero__trust strong,
.hero__trust span { display: block; }

.hero__trust strong {
  color: var(--blue-ink);
  font-size: 1.08rem;
}

.hero__trust span {
  margin-top: 1px;
  color: var(--muted);
  font-size: .82rem;
}

.hero__visual {
  position: relative;
  max-width: 510px;
  margin-left: auto;
}

.hero-card {
  overflow: hidden;
  border: 7px solid var(--white);
  border-radius: 36px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 15%;
}

.hero-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}

.tag {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(24,169,230,.1);
  color: var(--blue-dark);
  font-size: .74rem;
  font-weight: 850;
}

.mini-paw { color: var(--green); }

.hero-card__caption {
  display: grid;
  gap: 4px;
  padding: 18px 18px 20px;
}

.hero-card__caption strong { font-size: 1.05rem; }
.hero-card__caption span { color: var(--muted); font-size: .88rem; }

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 185px;
  padding: 14px 16px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.floating-card strong,
.floating-card span { display: block; }

.floating-card span { font-size: .76rem; }

.floating-card__icon {
  display: grid !important;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.25);
  font-size: 1.15rem !important;
  font-weight: 900;
}

.floating-card--green {
  left: -52px;
  bottom: 120px;
  background: var(--green);
}

.floating-card--white {
  right: -25px;
  bottom: 40px;
  background: var(--white);
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.hero__blob--one {
  top: -80px;
  right: -70px;
  width: 250px;
  height: 250px;
  background: rgba(24, 169, 230, .08);
}

.hero__blob--two {
  bottom: -120px;
  left: -110px;
  width: 300px;
  height: 300px;
  background: rgba(140, 214, 63, .1);
}

/* Quick links */
.quick-links {
  position: relative;
  z-index: 4;
  margin-top: -25px;
}

.quick-links__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(31,45,51,.08);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.quick-card {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 94px;
  padding: 18px;
  border-right: 1px solid var(--gray-100);
  text-decoration: none;
  transition: background .2s ease;
}

.quick-card:last-child { border-right: 0; }
.quick-card:hover { background: #F5FCFF; }

.quick-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: rgba(140,214,63,.16);
}

.quick-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--blue-dark);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-card strong,
.quick-card small { display: block; }

.quick-card strong {
  font-size: .94rem;
  line-height: 1.25;
}

.quick-card small {
  margin-top: 3px;
  color: var(--muted);
}

/* Section headings */
.section-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2 { max-width: 720px; }
.section-heading p { margin-bottom: 8px; }

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(31,45,51,.045);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.service-card--featured {
  background: var(--blue);
  color: var(--white);
}

.service-card--featured p,
.service-card--featured a { color: rgba(255,255,255,.92); }

.service-card__number {
  margin-bottom: 50px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.service-card--featured .service-card__number { color: var(--white); }
.service-card p { margin-bottom: 26px; }
.service-card a {
  margin-top: auto;
  color: var(--blue-dark);
  font-weight: 850;
  text-decoration: none;
}

/* Campaign */
.campaign {
  background: var(--off-white);
}

.campaign__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.campaign__image {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.campaign__image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.campaign__content p {
  max-width: 650px;
  font-size: 1.06rem;
}

.campaign__notice {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin: 26px 0;
  padding: 18px;
  border-left: 4px solid var(--green);
  border-radius: 12px;
  background: var(--white);
}

.campaign__notice strong { color: var(--blue-dark); }
.campaign__notice span { color: var(--muted); }

/* Vet */
.vet-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 76px;
  align-items: center;
}

.vet-photo-wrap {
  position: relative;
  max-width: 480px;
}

.vet-photo-wrap img {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.vet-photo-bg {
  position: absolute;
  inset: 30px -24px -24px 34px;
  border-radius: 30px;
  background: var(--green);
}

.vet-intro {
  max-width: 700px;
  font-size: 1.08rem;
}

.vet-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 26px 0;
  padding: 18px;
  border: 1px solid var(--gray-100);
  border-radius: 18px;
  background: var(--off-white);
}

.vet-profile h3,
.vet-profile p { margin-bottom: 0; }

.vet-profile p { margin-top: 4px; font-size: .9rem; }

.vet-profile__badge {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: var(--blue);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-dark);
  font-weight: 900;
}

/* Products */
.products { background: #F7FBF2; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  min-height: 270px;
  padding: 30px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(31,45,51,.06);
}

.product-card__kicker {
  display: inline-block;
  margin-bottom: 36px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(140,214,63,.18);
  color: #507D19;
  font-size: .75rem;
  font-weight: 850;
}

.product-card p { min-height: 78px; }
.product-card a {
  color: var(--blue-dark);
  font-weight: 850;
  text-decoration: none;
}

/* Reviews */
.reviews {
  background: var(--blue-ink);
  color: var(--white);
}

.section-heading--light p,
.eyebrow--light,
.reviews p { color: rgba(255,255,255,.78); }

.eyebrow--light::before { background: var(--green-bright); }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.stars {
  margin-bottom: 24px;
  color: var(--green-bright);
  letter-spacing: .14em;
}

.review-card blockquote {
  min-height: 108px;
  margin: 0 0 18px;
  font-size: 1.1rem;
  font-weight: 650;
  line-height: 1.5;
}

.review-card figcaption { color: rgba(255,255,255,.65); font-size: .86rem; }

.reviews__action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion details {
  overflow: hidden;
  border: 1px solid var(--gray-100);
  border-radius: 18px;
  background: var(--white);
}

.accordion summary {
  position: relative;
  padding: 20px 52px 20px 22px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.accordion summary::-webkit-details-marker { display: none; }

.accordion summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--blue-dark);
  font-size: 1.45rem;
}

.accordion details[open] summary::after { content: "–"; }

.accordion details p {
  margin: 0;
  padding: 0 22px 20px;
}

/* Contact */
.contact {
  background:
    radial-gradient(circle at 5% 90%, rgba(140,214,63,.15), transparent 24%),
    linear-gradient(135deg, #F4FCFF, #FFFFFF);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 70px;
  align-items: center;
}

.contact-content > p { font-size: 1.05rem; }

.contact-list {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.contact-list > * {
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  text-decoration: none;
}

.contact-list span {
  color: var(--muted);
  font-size: .8rem;
}

.contact-card {
  padding: 34px;
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card__label {
  color: var(--blue-dark);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin-top: 8px;
  font-size: 1.7rem;
}

form {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}

label {
  margin-top: 6px;
  font-size: .84rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: 13px;
  background: var(--white);
  color: var(--text);
}

input,
select { height: 48px; padding: 0 14px; }
textarea { resize: vertical; padding: 12px 14px; }

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(24,169,230,.12);
}

form small {
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.45;
}

.hidden-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

/* Footer */
.site-footer {
  padding: 62px 0 24px;
  background: #10262F;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .9fr .8fr;
  gap: 38px;
}

.footer-brand {
  display: block;
  width: 175px;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 100%;
  height: 64px;
  border-radius: 17px;
  object-fit: cover;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255,255,255,.7);
  font-size: .88rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 9px;
  text-decoration: none;
}

.footer-grid a:hover { color: var(--green-bright); }

.footer-title {
  margin-bottom: 16px;
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: .78rem;
  text-decoration: none;
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  z-index: 999;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--green);
  color: #17310A;
  box-shadow: 0 12px 32px rgba(31,45,51,.22);
  font-size: 1.55rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease;
}

.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* Hero refinado: fotografia fluida em vez de card */
.hero {
  padding: 62px 0 78px;
  background:
    radial-gradient(circle at 87% 18%, rgba(140,214,63,.19), transparent 26%),
    radial-gradient(circle at 62% 76%, rgba(24,169,230,.10), transparent 28%),
    linear-gradient(180deg, #F4FCFF 0%, #FFFFFF 100%);
}

.hero__grid {
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(42px, 6vw, 88px);
}

.hero__visual {
  max-width: 620px;
  width: 100%;
}

.hero-photo {
  position: relative;
  min-height: 510px;
  isolation: isolate;
}

.hero-photo::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8% -7% -7% 12%;
  border-radius: 52% 48% 42% 58% / 46% 38% 62% 54%;
  background: linear-gradient(145deg, rgba(24,169,230,.18), rgba(140,214,63,.20));
  filter: blur(1px);
}

.hero-photo img {
  width: 100%;
  height: clamp(470px, 52vw, 610px);
  object-fit: cover;
  object-position: center 46%;
  border-radius: 46px 18px 54px 22px;
  box-shadow: 0 28px 70px rgba(7,95,137,.16);
}

.hero-photo__badge {
  position: absolute;
  right: -18px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 330px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 18px;
  background: rgba(255,255,255,.91);
  box-shadow: 0 14px 34px rgba(31,45,51,.12);
  backdrop-filter: blur(10px);
}

.hero-photo__badge-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 900;
}

.hero-photo__badge strong,
.hero-photo__badge small {
  display: block;
}

.hero-photo__badge strong {
  font-size: .92rem;
  line-height: 1.25;
}

.hero-photo__badge small {
  margin-top: 2px;
  color: var(--muted);
  font-size: .75rem;
}

/* Campanha: imagem inteira, sem corte do cão, gato ou fundo */
.campaign {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 50%, rgba(24,169,230,.10), transparent 28%),
    linear-gradient(180deg, #F7FAFB 0%, #F3FAFC 100%);
}

.campaign__grid {
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(48px, 6vw, 82px);
}

.campaign__image {
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
}

.campaign__image img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 34px 12px 34px 12px;
  box-shadow: 0 24px 58px rgba(7,95,137,.12);
}

/* Avaliações reais com identidade visual do Google sem copiar sua interface */
.review-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.review-card--real {
  padding: 28px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
}

.review-author img {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border: 2px solid rgba(255,255,255,.28);
  border-radius: 50%;
  object-fit: cover;
}

.review-author strong,
.review-author span {
  display: block;
}

.review-author strong {
  color: var(--white);
  font-size: .98rem;
}

.review-author span {
  margin-top: 2px;
  color: rgba(255,255,255,.62);
  font-size: .76rem;
}

.review-card--real .stars {
  margin-bottom: 14px;
}

.review-card--real blockquote {
  min-height: 0;
  margin-bottom: 0;
}

.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.82);
}

.google-rating strong {
  color: var(--white);
  font-size: 1.15rem;
}


/* ===== Atualização V3 ===== */

/* Marca com maior presença no cabeçalho */
.nav {
  min-height: 104px;
}

.brand {
  width: 224px;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: 100%;
  height: 78px;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  filter: drop-shadow(0 5px 12px rgba(7,95,137,.08));
}

.nav-shell {
  background: linear-gradient(90deg, rgba(255,255,255,.98), rgba(249,253,255,.97));
}

.footer-brand {
  width: 210px;
  padding: 10px 12px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
}

.footer-brand img {
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: contain;
}

/* Foto da veterinária em composição horizontal, sem esticar */
.vet-grid {
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(42px, 5vw, 68px);
}

.vet-photo-wrap {
  width: 100%;
  max-width: 650px;
  isolation: isolate;
}

.vet-photo-wrap img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 43%;
  border-radius: 32px 14px 32px 14px;
  box-shadow: 0 26px 64px rgba(7,95,137,.14);
}

.vet-photo-bg {
  z-index: -1;
  inset: 22px -18px -18px 26px;
  border-radius: 34px 16px 34px 16px;
  background: linear-gradient(145deg, rgba(140,214,63,.96), rgba(104,194,44,.90));
}

/* Nova arte CATDOG: inteira, centralizada e sem recorte */
.campaign__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.campaign__image img {
  width: min(100%, 600px);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 34px 14px 34px 14px;
  box-shadow: 0 24px 58px rgba(7,95,137,.13);
}
