:root {
  /* Troque estas variáveis pelas cores oficiais exatas após receber o arquivo original da marca. */
  --green-950: #0d3524;
  --green-900: #12472f;
  --green-800: #176a3c;
  --green-700: #1f8650;
  --green-500: #3cac68;
  --amber-500: #f8b62d;
  --amber-400: #ffcb52;
  --orange-500: #ee7b2d;
  --cream-50: #fffdf8;
  --cream-100: #fff7e8;
  --cream-200: #f9ecd4;
  --ink: #14221a;
  --muted: #657168;
  --white: #ffffff;
  --border: rgba(18, 71, 47, .14);
  --shadow: 0 24px 70px rgba(13, 53, 36, .14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --header-h: 84px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: "Nunito Sans", "Avenir Next", Avenir, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img, svg { display: block; max-width: 100%; }
button { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--green-950);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.announcement {
  height: 34px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--green-950);
  color: rgba(255,255,255,.86);
  font-size: 12px;
  letter-spacing: .025em;
  position: relative;
  z-index: 80;
}
.announcement__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber-400);
  box-shadow: 0 0 0 5px rgba(255,203,82,.12);
}
.announcement a { color: var(--amber-400); font-weight: 800; margin-left: 4px; }

.site-header {
  height: var(--header-h);
  padding: 0 clamp(20px, 4vw, 72px);
  display: flex;
  align-items: center;
  gap: 36px;
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 70;
  transition: background .35s ease, box-shadow .35s ease, height .35s ease, top .35s ease;
}
.site-header.is-scrolled {
  position: fixed;
  top: 0;
  height: 70px;
  background: rgba(255,253,248,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 36px rgba(13,53,36,.08);
}
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand__mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--green-800);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), 0 10px 25px rgba(23,106,60,.18);
}
.brand__mark svg { width: 29px; fill: var(--amber-400); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong { color: var(--green-950); font-size: 22px; letter-spacing: -.055em; font-weight: 950; }
.brand__text small { color: var(--green-700); margin-top: 5px; font-size: 9px; letter-spacing: .14em; font-weight: 900; text-transform: uppercase; }

.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2.8vw, 42px); margin-left: auto; }
.desktop-nav a { position: relative; font-size: 14px; font-weight: 800; color: rgba(20,34,26,.72); transition: color .2s ease; }
.desktop-nav a::after { content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: -7px; background: var(--green-700); transition: right .25s var(--ease); }
.desktop-nav a:hover { color: var(--green-800); }
.desktop-nav a:hover::after { right: 0; }

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 17px;
  border-radius: 999px;
  background: var(--green-800);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(23,106,60,.18);
  transition: transform .25s var(--ease), background .25s ease;
}
.header-cta:hover { transform: translateY(-2px); background: var(--green-900); }
.header-cta svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; border-radius: 4px; background: var(--green-950); transition: transform .25s ease, opacity .25s ease; }
.menu-toggle span + span { margin-top: 5px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; }

.hero {
  min-height: calc(100svh - 34px);
  padding: calc(var(--header-h) + 86px) clamp(20px, 5.5vw, 96px) 56px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(30px, 4vw, 82px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 83% 34%, rgba(255,203,82,.24), transparent 27%),
    radial-gradient(circle at 10% 84%, rgba(60,172,104,.12), transparent 28%),
    linear-gradient(145deg, var(--cream-50), var(--cream-100));
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  width: 50vw;
  height: 50vw;
  min-width: 670px;
  min-height: 670px;
  top: 50%;
  right: -10vw;
  transform: translateY(-48%);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(23,106,60,.08), rgba(255,255,255,.12));
  border: 1px solid rgba(23,106,60,.08);
}
.hero__grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: .34;
  background-image: linear-gradient(rgba(18,71,47,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(18,71,47,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}
.hero__ambient { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero__ambient--one { width: 260px; height: 260px; background: rgba(248,182,45,.13); top: 18%; left: -120px; }
.hero__ambient--two { width: 150px; height: 150px; background: rgba(60,172,104,.11); right: 4%; bottom: -60px; }
.hero__copy { max-width: 680px; position: relative; z-index: 10; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-700);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 950;
}
.eyebrow__spark { width: 28px; height: 28px; display: grid; place-items: center; color: var(--orange-500); border-radius: 50%; background: rgba(238,123,45,.1); font-size: 13px; }
.hero h1 {
  max-width: 720px;
  margin: 24px 0 22px;
  font-size: clamp(48px, 5.25vw, 84px);
  line-height: .96;
  letter-spacing: -.066em;
  font-weight: 950;
  text-wrap: balance;
}
.hero h1 em { display: block; color: var(--green-700); font-style: normal; position: relative; }
.hero h1 em::after { content: ""; position: absolute; width: 82px; height: 10px; left: 2px; bottom: -13px; border-radius: 999px; background: var(--amber-400); transform: rotate(-2deg); }
.hero__lead { max-width: 590px; margin: 31px 0 0; color: var(--muted); font-size: clamp(17px, 1.45vw, 21px); line-height: 1.65; }
.hero__actions { display: flex; align-items: center; gap: 14px; margin-top: 32px; }
.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 950;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease;
  position: relative;
  overflow: hidden;
}
.button::before { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, transparent 15%, rgba(255,255,255,.22) 50%, transparent 85%); transform: translateX(-130%); transition: transform .7s ease; }
.button:hover::before { transform: translateX(130%); }
.button:hover { transform: translateY(-3px); }
.button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.button--primary { color: var(--white); background: var(--green-800); box-shadow: 0 16px 35px rgba(23,106,60,.2); }
.button--primary:hover { background: var(--green-900); box-shadow: 0 20px 42px rgba(23,106,60,.26); }
.button--ghost { min-height: 52px; color: var(--green-900); border: 1px solid rgba(18,71,47,.16); background: rgba(255,255,255,.45); backdrop-filter: blur(10px); }
.button--light { background: var(--cream-50); color: var(--green-900); box-shadow: 0 18px 50px rgba(0,0,0,.15); }
.hero__trust { display: flex; align-items: center; gap: 13px; margin-top: 30px; }
.hero__trust strong, .hero__trust small { display: block; }
.hero__trust strong { font-size: 12px; color: var(--green-900); }
.hero__trust small { margin-top: 3px; color: var(--muted); font-size: 11px; }
.avatar-stack { display: flex; }
.avatar-stack span { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 50%; background: var(--cream-50); border: 2px solid var(--cream-100); box-shadow: 0 7px 16px rgba(13,53,36,.08); }
.avatar-stack span + span { margin-left: -9px; }

.universe {
  width: min(48vw, 740px);
  aspect-ratio: 1;
  position: relative;
  place-self: center;
  transform-style: preserve-3d;
}
.universe__halo, .universe__orbit-path { position: absolute; left: 50%; top: 50%; border-radius: 50%; pointer-events: none; }
.universe__halo--outer { width: 88%; height: 88%; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(255,255,255,.72), rgba(255,255,255,.1) 62%, transparent 63%); box-shadow: inset 0 0 80px rgba(255,255,255,.72); }
.universe__halo--inner { width: 61%; height: 61%; transform: translate(-50%,-50%); background: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.7); box-shadow: 0 25px 70px rgba(23,106,60,.08); backdrop-filter: blur(9px); }
.universe__orbit-path--one { width: 79%; height: 55%; transform: translate(-50%,-50%) rotate(-9deg); border: 1px solid rgba(23,106,60,.16); }
.universe__orbit-path--two { width: 58%; height: 83%; transform: translate(-50%,-50%) rotate(22deg); border: 1px dashed rgba(238,123,45,.22); }
.pet-stage { position: absolute; z-index: 6; width: 55%; height: 61%; left: 50%; top: 50%; transform: translate(-50%,-48%); }
.pet-stage__photo-wrap {
  width: 100%; height: 100%; overflow: hidden; border-radius: 46% 46% 42% 42% / 40% 40% 50% 50%;
  background: #eee9e1;
  box-shadow: 0 30px 60px rgba(13,53,36,.18), inset 0 0 0 1px rgba(255,255,255,.8);
  position: relative;
}
.pet-stage__photo-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,53,36,.14), transparent 45%); pointer-events: none; }
.pet-stage__photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; transform: scale(1.02); }
.pet-stage__badge { position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 7px; padding: 9px 13px; border-radius: 999px; color: var(--green-900); background: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.7); box-shadow: 0 14px 32px rgba(13,53,36,.11); backdrop-filter: blur(14px); font-size: 10px; font-weight: 950; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; }
.pet-stage__badge--top { top: -18px; left: 50%; transform: translateX(-50%); }
.pet-stage__badge--bottom { bottom: -17px; left: 50%; transform: translateX(-50%); }
.pet-stage__badge--bottom span { color: var(--amber-500); font-size: 14px; }
.orbit-card {
  min-width: 170px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 14px 11px 11px;
  position: absolute;
  z-index: 8;
  border-radius: 18px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: 0 16px 40px rgba(13,53,36,.12);
  backdrop-filter: blur(16px);
  will-change: transform;
}
.orbit-card__icon { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; flex-shrink: 0; }
.orbit-card__icon svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.orbit-card strong, .orbit-card small { display: block; }
.orbit-card strong { color: var(--green-950); font-size: 12px; }
.orbit-card small { color: var(--muted); font-size: 9px; margin-top: 3px; }
.orbit-card--food { left: 1%; top: 23%; animation: floatOne 5.8s ease-in-out infinite; }
.orbit-card--food .orbit-card__icon { color: var(--green-800); background: rgba(60,172,104,.14); }
.orbit-card--fun { right: 0; top: 18%; animation: floatTwo 6.4s ease-in-out infinite; }
.orbit-card--fun .orbit-card__icon { color: #b66a02; background: rgba(248,182,45,.17); }
.orbit-card--care { left: 4%; bottom: 18%; animation: floatTwo 6.8s ease-in-out infinite reverse; }
.orbit-card--care .orbit-card__icon { color: var(--orange-500); background: rgba(238,123,45,.13); }
.orbit-card--comfort { right: -2%; bottom: 21%; animation: floatOne 6.2s ease-in-out infinite reverse; }
.orbit-card--comfort .orbit-card__icon { color: var(--green-700); background: rgba(23,106,60,.1); }
.floating-paw { position: absolute; z-index: 2; color: var(--green-700); opacity: .3; filter: blur(.2px); }
.floating-paw::before, .floating-paw::after { content: ""; position: absolute; width: .62em; height: .62em; border-radius: 50%; background: currentColor; top: -.6em; }
.floating-paw::before { left: -.5em; }
.floating-paw::after { right: -.5em; }
.floating-paw--one { font-size: 16px; left: 17%; top: 12%; transform: rotate(-22deg); animation: pawDrift 5s ease-in-out infinite; }
.floating-paw--two { font-size: 12px; right: 15%; top: 48%; transform: rotate(28deg); animation: pawDrift 6s ease-in-out infinite reverse; }
.floating-paw--three { font-size: 9px; left: 35%; bottom: 6%; transform: rotate(8deg); animation: pawDrift 4.5s ease-in-out infinite; }
.scroll-cue { position: absolute; left: clamp(20px, 5.5vw, 96px); bottom: 26px; display: flex; align-items: center; gap: 11px; color: var(--muted); font-size: 10px; letter-spacing: .12em; font-weight: 900; text-transform: uppercase; }
.scroll-cue i { width: 34px; height: 20px; border: 1px solid rgba(18,71,47,.25); border-radius: 999px; position: relative; }
.scroll-cue i::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--green-700); position: absolute; top: 7px; left: 6px; animation: scrollDot 1.8s ease-in-out infinite; }

.section { padding: clamp(90px, 10vw, 150px) clamp(20px, 6vw, 110px); position: relative; }
.section-heading { max-width: 840px; margin: 0 auto 58px; text-align: center; }
.section-heading--left { max-width: 700px; margin-left: 0; text-align: left; }
.section-heading h2, .delivery h2, .reviews h2, .final-cta h2 {
  margin: 18px 0 0;
  font-size: clamp(39px, 4.7vw, 72px);
  line-height: 1.02;
  letter-spacing: -.058em;
  font-weight: 950;
  text-wrap: balance;
}
.section-heading p, .delivery__copy > p { margin: 20px auto 0; max-width: 640px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.section-heading--left p { margin-left: 0; }

.categories { background: var(--cream-50); }
.category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; max-width: 1480px; margin: 0 auto; }
.category-card {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  padding: 23px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(18,71,47,.09);
  transition: transform .35s var(--ease), box-shadow .35s ease;
  isolation: isolate;
}
.category-card::before { content: ""; position: absolute; z-index: -1; width: 160px; height: 160px; border-radius: 50%; top: 20%; right: -55px; background: rgba(255,255,255,.45); filter: blur(1px); transition: transform .5s var(--ease); }
.category-card:hover { transform: translateY(-9px); box-shadow: var(--shadow); }
.category-card:hover::before { transform: scale(1.4); }
.category-card--food { background: #dff1e5; }
.category-card--fun { background: #fff0c8; }
.category-card--care { background: #fbe2d1; }
.category-card--comfort { background: #dceee7; }
.category-card__index { align-self: flex-start; padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.6); font-size: 10px; font-weight: 950; }
.category-card__art { display: grid; place-items: center; flex: 1; min-height: 210px; }
.category-card__art svg { width: 78%; max-height: 220px; fill: rgba(255,255,255,.2); stroke: var(--green-900); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; opacity: .92; transition: transform .5s var(--ease); }
.category-card:hover .category-card__art svg { transform: scale(1.07) rotate(-2deg); }
.category-card__body strong { display: block; font-size: 25px; letter-spacing: -.035em; }
.category-card__body small { display: block; min-height: 51px; margin-top: 9px; color: rgba(20,34,26,.65); font-size: 13px; line-height: 1.5; }
.category-card__arrow { position: absolute; right: 20px; bottom: 20px; width: 39px; height: 39px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.58); font-size: 16px; font-weight: 900; transition: transform .3s ease, background .3s ease; }
.category-card:hover .category-card__arrow { transform: rotate(45deg); background: var(--white); }

.delivery {
  min-height: 850px;
  display: grid;
  grid-template-columns: minmax(430px, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(40px, 8vw, 130px);
  color: var(--white);
  background: var(--green-950);
  overflow: hidden;
}
.delivery::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.1) 1px, transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(to right, black, transparent 75%); opacity: .38; }
.delivery__visual, .delivery__copy { position: relative; z-index: 2; }
.delivery__planet { width: min(42vw, 600px); aspect-ratio: 1; margin: auto; border-radius: 50%; position: relative; background: radial-gradient(circle at 34% 28%, #5ac37e, var(--green-700) 48%, #0c432a 100%); box-shadow: inset -36px -38px 80px rgba(4,35,20,.35), 0 50px 100px rgba(0,0,0,.28); }
.delivery__planet::before { content: ""; position: absolute; inset: 12%; border-radius: 50%; background: repeating-radial-gradient(ellipse at 35% 28%, transparent 0 25px, rgba(255,255,255,.035) 26px 28px); opacity: .8; }
.delivery__planet-ring { position: absolute; width: 125%; height: 42%; left: 50%; top: 52%; transform: translate(-50%,-50%) rotate(-14deg); border: 1px solid rgba(255,203,82,.48); border-radius: 50%; box-shadow: 0 0 0 10px rgba(255,203,82,.035); }
.delivery__planet-ring::after { content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%; right: 9%; top: 19%; background: var(--amber-400); box-shadow: 0 0 20px var(--amber-400); }
.delivery__pin { position: absolute; z-index: 4; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); color: var(--green-950); background: var(--amber-400); box-shadow: 0 13px 26px rgba(0,0,0,.2); font-size: 13px; font-weight: 950; }
.delivery__pin::before { content: attr(class); display: none; }
.delivery__pin--one { left: 26%; top: 28%; }
.delivery__pin--two { right: 22%; bottom: 22%; background: var(--white); }
.delivery__pin { color: transparent; }
.delivery__pin::after { content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--green-800); }
.delivery__route { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.delivery__route path { fill: none; stroke: var(--cream-100); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 7 12; opacity: .7; }
.delivery__scooter { position: absolute; width: 72px; height: 52px; left: 37%; top: 42%; color: var(--amber-400); filter: drop-shadow(0 8px 9px rgba(0,0,0,.25)); animation: scooterMove 5.2s ease-in-out infinite; }
.delivery__scooter svg { fill: none; stroke: currentColor; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.delivery .section-kicker { color: var(--amber-400); }
.delivery h2 { max-width: 690px; }
.delivery__copy > p { color: rgba(255,255,255,.68); margin-left: 0; }
.steps { padding: 0; margin: 34px 0; list-style: none; display: grid; gap: 12px; }
.steps li { display: flex; align-items: flex-start; gap: 15px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.steps li > span { width: 35px; height: 35px; display: grid; place-items: center; flex-shrink: 0; border-radius: 50%; color: var(--green-950); background: var(--amber-400); font-size: 12px; font-weight: 950; }
.steps strong, .steps small { display: block; }
.steps strong { font-size: 14px; }
.steps small { margin-top: 4px; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.45; }
.delivery .button--primary { color: var(--green-950); background: var(--amber-400); box-shadow: 0 16px 40px rgba(0,0,0,.2); }
.delivery .button--primary:hover { background: var(--amber-500); }

.stores { background: var(--cream-100); }
.store-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; max-width: 1320px; margin: 0 auto; }
.store-card {
  min-height: 430px;
  padding: clamp(28px, 4vw, 52px);
  border-radius: 38px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--green-900);
  box-shadow: 0 26px 60px rgba(13,53,36,.15);
  isolation: isolate;
}
.store-card--accent { color: var(--green-950); background: var(--amber-400); }
.store-card__top { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.store-card__number { font-size: 12px; letter-spacing: .1em; font-weight: 950; opacity: .65; }
.store-card__status { display: flex; align-items: center; gap: 8px; padding: 8px 11px; border-radius: 999px; background: rgba(255,255,255,.1); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.store-card--accent .store-card__status { background: rgba(13,53,36,.09); }
.store-card__status i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: .85; }
.store-card h3 { max-width: 430px; margin: 80px 0 12px; font-size: clamp(37px, 4vw, 62px); line-height: .98; letter-spacing: -.055em; }
.store-card p { margin: 0; color: rgba(255,255,255,.67); font-size: 15px; line-height: 1.65; }
.store-card--accent p { color: rgba(13,53,36,.67); }
.store-card__actions { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 34px; }
.store-card__actions a { display: inline-flex; align-items: center; gap: 10px; padding: 12px 15px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); font-size: 11px; font-weight: 900; transition: background .25s ease, transform .25s ease; }
.store-card--accent .store-card__actions a { border-color: rgba(13,53,36,.14); background: rgba(255,255,255,.22); }
.store-card__actions a:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.store-card__orb { position: absolute; z-index: -1; width: 310px; height: 310px; right: -115px; bottom: -120px; border-radius: 50%; border: 42px solid rgba(255,255,255,.07); box-shadow: 0 0 0 35px rgba(255,255,255,.035); }
.store-card--accent .store-card__orb { border-color: rgba(13,53,36,.06); box-shadow: 0 0 0 35px rgba(13,53,36,.025); }
.data-note { max-width: 1320px; margin: 18px auto 0; color: var(--muted); font-size: 10px; line-height: 1.5; }

.reviews { background: var(--cream-50); overflow: hidden; }
.reviews__heading { max-width: 850px; margin-bottom: 56px; }
.review-track { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; max-width: 1400px; margin: 0 auto; align-items: center; }
.review-card { min-height: 330px; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; border-radius: 30px; border: 1px solid var(--border); background: var(--white); box-shadow: 0 18px 45px rgba(13,53,36,.07); }
.review-card--featured { min-height: 380px; color: var(--white); background: var(--green-800); transform: translateY(-12px); box-shadow: 0 28px 65px rgba(23,106,60,.2); }
.review-card__stars { color: var(--amber-500); letter-spacing: .16em; font-size: 13px; }
.review-card blockquote { margin: 28px 0; font-size: clamp(19px, 2vw, 28px); line-height: 1.35; letter-spacing: -.025em; font-weight: 780; }
.review-card footer { display: flex; align-items: center; gap: 12px; }
.review-card footer > span { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 50%; color: var(--green-900); background: var(--cream-100); font-weight: 950; }
.review-card footer strong, .review-card footer small { display: block; }
.review-card footer strong { font-size: 12px; }
.review-card footer small { color: var(--muted); margin-top: 3px; font-size: 10px; }
.review-card--featured footer small { color: rgba(255,255,255,.6); }

.final-cta {
  min-height: 700px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  background: var(--green-800);
  overflow: hidden;
  isolation: isolate;
}
.final-cta::before { content: ""; position: absolute; z-index: -3; inset: 0; background: radial-gradient(circle at 50% 45%, rgba(255,203,82,.18), transparent 35%), linear-gradient(145deg, var(--green-700), var(--green-950)); }
.final-cta__content { max-width: 1050px; position: relative; z-index: 3; }
.section-kicker--light { color: var(--amber-400); }
.final-cta h2 { margin-top: 22px; font-size: clamp(44px, 6.2vw, 92px); }
.final-cta h2 em { color: var(--amber-400); font-style: normal; }
.final-cta p { max-width: 570px; margin: 25px auto 30px; color: rgba(255,255,255,.68); font-size: 17px; line-height: 1.6; }
.final-cta__orbit { position: absolute; z-index: -1; left: 50%; top: 50%; border-radius: 50%; border: 1px solid rgba(255,255,255,.13); }
.final-cta__orbit--one { width: 760px; height: 350px; transform: translate(-50%,-50%) rotate(-11deg); }
.final-cta__orbit--two { width: 540px; height: 760px; transform: translate(-50%,-50%) rotate(32deg); border-style: dashed; }
.final-cta__paw { position: absolute; right: 5vw; bottom: -120px; width: min(28vw, 360px); opacity: .055; transform: rotate(-14deg); }
.final-cta__paw svg { fill: var(--white); }

.site-footer { min-height: 150px; padding: 34px clamp(20px, 6vw, 110px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 35px; color: rgba(255,255,255,.62); background: #082719; }
.brand--footer .brand__text strong { color: var(--white); }
.brand--footer .brand__text small { color: var(--amber-400); }
.site-footer__info { display: flex; gap: 18px; font-size: 12px; font-weight: 800; }
.site-footer__info a:hover { color: var(--amber-400); }
.site-footer > p { justify-self: end; font-size: 10px; text-align: right; }
.whatsapp-float { position: fixed; z-index: 60; right: 20px; bottom: max(20px, env(safe-area-inset-bottom)); min-height: 52px; padding: 0 18px 0 14px; display: flex; align-items: center; gap: 10px; border-radius: 999px; color: var(--white); background: #1f9b58; box-shadow: 0 16px 35px rgba(11,83,44,.27); font-size: 12px; font-weight: 950; transition: transform .25s var(--ease), box-shadow .25s ease; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(11,83,44,.34); }
.whatsapp-float svg { width: 25px; fill: currentColor; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes floatOne { 0%,100% { transform: translate3d(0,0,0) rotate(-1deg); } 50% { transform: translate3d(0,-13px,0) rotate(1deg); } }
@keyframes floatTwo { 0%,100% { transform: translate3d(0,0,0) rotate(1deg); } 50% { transform: translate3d(0,11px,0) rotate(-1deg); } }
@keyframes pawDrift { 0%,100% { translate: 0 0; opacity: .18; } 50% { translate: 0 -10px; opacity: .38; } }
@keyframes scrollDot { 0% { transform: translateX(0); opacity: .4; } 50% { opacity: 1; } 100% { transform: translateX(15px); opacity: .4; } }
@keyframes scooterMove { 0%,100% { transform: translate(-24px,22px) rotate(-6deg); } 50% { transform: translate(50px,-28px) rotate(4deg); } }

@media (max-width: 1180px) {
  .site-header { gap: 24px; }
  .desktop-nav { gap: 22px; }
  .hero { grid-template-columns: minmax(0, .9fr) minmax(470px, 1.1fr); gap: 20px; }
  .hero h1 { font-size: clamp(48px, 5.2vw, 70px); }
  .universe { width: min(52vw, 650px); }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-card { min-height: 400px; }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .announcement { justify-content: flex-start; padding-inline: 16px; white-space: nowrap; overflow: hidden; }
  .announcement span:nth-child(2) { overflow: hidden; text-overflow: ellipsis; }
  .site-header { top: 34px; padding-inline: 18px; height: var(--header-h); }
  .brand__mark { width: 41px; height: 41px; border-radius: 13px; }
  .brand__mark svg { width: 25px; }
  .brand__text strong { font-size: 19px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .mobile-menu {
    display: flex;
    position: fixed;
    z-index: 65;
    inset: 0;
    padding: calc(98px + env(safe-area-inset-top)) 24px 34px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: rgba(255,253,248,.98);
    transform: translateY(-105%);
    visibility: hidden;
    transition: transform .42s var(--ease), visibility .42s;
  }
  .mobile-menu.is-open { transform: translateY(0); visibility: visible; }
  .mobile-menu > a:not(.mobile-menu__cta) { padding: 13px 0; border-bottom: 1px solid var(--border); color: var(--green-950); font-size: clamp(30px, 9vw, 46px); font-weight: 950; letter-spacing: -.05em; }
  .mobile-menu__cta { margin-top: 20px; padding: 16px; border-radius: 999px; text-align: center; color: var(--white); background: var(--green-800); font-weight: 900; }

  .hero {
    min-height: calc(100svh - 34px);
    padding: calc(var(--header-h) + 48px) 18px 28px;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(350px, 1fr) auto;
    gap: 4px;
    align-items: start;
    text-align: center;
    background:
      radial-gradient(circle at 50% 49%, rgba(255,203,82,.23), transparent 29%),
      radial-gradient(circle at 12% 78%, rgba(60,172,104,.14), transparent 24%),
      linear-gradient(160deg, var(--cream-50), var(--cream-100));
  }
  .hero::after { width: 620px; height: 620px; min-width: 0; min-height: 0; right: 50%; top: 58%; transform: translate(50%,-50%); opacity: .75; }
  .hero__grid { mask-image: linear-gradient(to bottom, black, transparent 80%); opacity: .25; }
  .hero__copy { max-width: 680px; margin: 0 auto; }
  .eyebrow { margin-inline: auto; }
  .hero h1 { max-width: 650px; margin: 16px auto 12px; font-size: clamp(43px, 12.3vw, 67px); line-height: .93; }
  .hero h1 em { display: inline; }
  .hero h1 em::after { display: none; }
  .hero__lead { max-width: 580px; margin: 17px auto 0; font-size: 15px; line-height: 1.52; }
  .hero__actions { display: none; }
  .hero__trust { display: none; }

  /* Mobile possui composição própria: órbita elíptica, cards menores e foto em destaque. */
  .universe { width: min(96vw, 590px); height: 100%; min-height: 390px; aspect-ratio: auto; margin: -4px auto 0; }
  .universe__halo--outer { width: 96%; height: 86%; background: radial-gradient(circle, rgba(255,255,255,.78), rgba(255,255,255,.08) 62%, transparent 63%); }
  .universe__halo--inner { width: 61%; height: 70%; }
  .universe__orbit-path--one { width: 92%; height: 50%; transform: translate(-50%,-49%) rotate(-8deg); }
  .universe__orbit-path--two { width: 55%; height: 92%; transform: translate(-50%,-50%) rotate(20deg); }
  .pet-stage { width: min(54vw, 290px); height: min(68vw, 360px); transform: translate(-50%,-48%); }
  .pet-stage__photo-wrap { border-radius: 48% 48% 44% 44% / 42% 42% 52% 52%; box-shadow: 0 22px 48px rgba(13,53,36,.17); }
  .pet-stage__photo-wrap img { object-position: 50% 51%; }
  .pet-stage__badge { padding: 7px 10px; font-size: 8px; }
  .pet-stage__badge--top { top: -11px; }
  .pet-stage__badge--bottom { bottom: -10px; }
  .orbit-card { min-width: 0; padding: 8px; gap: 0; border-radius: 14px; }
  .orbit-card__icon { width: 38px; height: 38px; border-radius: 11px; }
  .orbit-card__icon svg { width: 22px; }
  .orbit-card > span:last-child { display: none; }
  .orbit-card--food { left: 2%; top: 30%; }
  .orbit-card--fun { right: 1%; top: 24%; }
  .orbit-card--care { left: 5%; bottom: 21%; }
  .orbit-card--comfort { right: 3%; bottom: 18%; }
  .floating-paw--one { left: 18%; top: 12%; }
  .floating-paw--two { right: 18%; top: 50%; }
  .scroll-cue {
    position: static;
    width: 100%;
    min-height: 58px;
    margin-top: -8px;
    padding: 0 6px;
    justify-content: center;
    color: var(--green-950);
    z-index: 12;
  }
  .scroll-cue::before {
    content: "Encontrar o que meu pet precisa";
    min-height: 52px;
    width: min(100%, 520px);
    display: grid;
    place-items: center;
    padding: 0 22px;
    border-radius: 999px;
    color: var(--white);
    background: var(--green-800);
    box-shadow: 0 16px 35px rgba(23,106,60,.21);
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
  }
  .scroll-cue span, .scroll-cue i { display: none; }

  .section { padding: 88px 18px; }
  .section-heading { margin-bottom: 40px; }
  .section-heading h2, .delivery h2, .reviews h2 { font-size: clamp(38px, 10.4vw, 58px); }
  .section-heading p, .delivery__copy > p { font-size: 15px; }
  .category-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .category-card { min-height: 330px; padding: 16px; border-radius: 24px; }
  .category-card__art { min-height: 140px; }
  .category-card__body strong { font-size: 21px; }
  .category-card__body small { font-size: 11px; min-height: 65px; }
  .category-card__arrow { width: 34px; height: 34px; right: 14px; bottom: 14px; }

  .delivery { min-height: auto; grid-template-columns: 1fr; gap: 48px; padding-top: 78px; }
  .delivery__visual { order: 2; }
  .delivery__copy { order: 1; text-align: center; }
  .delivery__copy > p { margin-inline: auto; }
  .delivery__planet { width: min(88vw, 520px); }
  .steps { text-align: left; }
  .delivery .button { width: 100%; }

  .store-grid { grid-template-columns: 1fr; }
  .store-card { min-height: 370px; border-radius: 30px; }
  .store-card h3 { margin-top: 58px; }
  .review-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; padding: 4px 3px 22px; scrollbar-width: none; }
  .review-track::-webkit-scrollbar { display: none; }
  .review-card { min-width: min(84vw, 410px); min-height: 330px; scroll-snap-align: center; }
  .review-card--featured { min-height: 350px; transform: none; order: -1; }
  .final-cta { min-height: 650px; }
  .final-cta h2 { font-size: clamp(42px, 11vw, 67px); }
  .final-cta h2 br { display: none; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .site-footer > p { justify-self: center; text-align: center; }
}

@media (max-width: 520px) {
  .announcement { font-size: 10px; }
  .announcement a { margin-left: auto; }
  .brand__text small { display: none; }
  .hero { grid-template-rows: auto minmax(330px, 1fr) auto; padding-top: calc(var(--header-h) + 36px); }
  .eyebrow { font-size: 10px; }
  .eyebrow__spark { width: 25px; height: 25px; }
  .hero h1 { font-size: clamp(40px, 12.1vw, 55px); }
  .hero__lead { font-size: 14px; max-width: 365px; }
  .universe { width: 100vw; margin-left: -18px; min-height: 350px; }
  .pet-stage { width: 56vw; height: 72vw; max-width: 245px; max-height: 310px; }
  .universe__halo--inner { width: 63%; height: 70%; }
  .orbit-card--food { left: 5%; top: 29%; }
  .orbit-card--fun { right: 4%; top: 23%; }
  .orbit-card--care { left: 7%; bottom: 22%; }
  .orbit-card--comfort { right: 5%; bottom: 18%; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 330px; }
  .category-card__body small { min-height: auto; padding-right: 40px; }
  .store-card__top { align-items: flex-start; }
  .store-card__status { max-width: 190px; line-height: 1.4; }
  .store-card__actions { flex-direction: column; align-items: stretch; }
  .store-card__actions a { justify-content: space-between; }
  .whatsapp-float { width: 52px; height: 52px; padding: 0; justify-content: center; }
  .whatsapp-float span { display: none; }
}

@media (max-height: 720px) and (max-width: 900px) {
  .hero { min-height: auto; padding-bottom: 22px; }
  .universe { min-height: 320px; height: 320px; }
  .pet-stage { height: 280px; width: 220px; }
}

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