:root {
  --pv-color-orange: #e57029;
  --pv-color-orange-dark: #cc6008;
  --pv-color-teal: #057b68;
  --pv-color-teal-dark: #035b57;
  --pv-color-text: #312b25;
  --pv-color-text-strong: #2b1503;
  --pv-color-background: #fbf9f6;
  --pv-color-white: #ffffff;
  --pv-color-border: #e8ded3;
  --pv-color-olive: #7b8b45;
  --pv-color-cream: #faf0e2;
  --pv-color-sage: #eef4e8;
  --pv-color-mint: #eaf5f3;
  --pv-color-peach: #f9ece4;
  --pv-hero-shape-orange: #e78235;
  --pv-hero-shape-vertical: #e3be97;
  --pv-font-display: "Arial Narrow", "Avenir Next Condensed", "Roboto Condensed", sans-serif;
  --pv-font-body: Inter, "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --pv-container: 1220px;
  --pv-gutter: clamp(20px, 3vw, 32px);
  --pv-radius-large: 24px;
  --pv-radius: 18px;
  --pv-shadow-soft: 0 18px 50px rgba(71, 48, 30, 0.08);
}

html { scroll-padding-top: 88px; }

body.pv-home-page {
  background: var(--pv-color-white);
  color: var(--pv-color-text);
  font-family: var(--pv-font-body);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

.pv-home-page *,
.pv-home-page *::before,
.pv-home-page *::after { box-sizing: border-box; }

.pv-home-page a { color: inherit; }
.pv-home-page img { display: block; height: auto; max-width: 100%; }
.pv-home-page h1,
.pv-home-page h2,
.pv-home-page h3,
.pv-home-page p { margin-top: 0; }

.pv-home-page h1,
.pv-home-page h2,
.pv-home-page h3 {
  color: var(--pv-color-text-strong);
  font-family: var(--pv-font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.pv-container {
  margin-inline: auto;
  max-width: calc(var(--pv-container) + (var(--pv-gutter) * 2));
  padding-inline: var(--pv-gutter);
  width: 100%;
}

.pv-icon { height: 1.5em; width: 1.5em; }
.pv-anchor-target { left: 0; position: absolute; top: 0; }

.pv-skip-link {
  background: var(--pv-color-text-strong);
  color: var(--pv-color-white);
  left: 16px;
  padding: 12px 18px;
  position: fixed;
  top: -100px;
  z-index: 1000;
}

.pv-skip-link:focus { top: 12px; }

.pv-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(232, 222, 211, 0.55);
  min-height: 80px;
  position: relative;
  z-index: 100;
}

.pv-header__inner {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(190px, 1fr);
  min-height: 80px;
}

.pv-logo {
  align-items: center;
  display: inline-flex;
  text-decoration: none;
  width: fit-content;
}

.pv-logo__picture,
.pv-logo__image { display: block; }
.pv-logo__picture { width: 160px; }
.pv-logo__image { height: auto; width: 100%; }
.pv-logo__picture--footer { width: 140px; }

.pv-nav {
  align-items: center;
  display: flex;
  gap: clamp(22px, 2.8vw, 42px);
  justify-content: center;
}

.pv-nav a {
  font-size: 14px;
  font-weight: 550;
  padding-block: 28px;
  position: relative;
  text-decoration: none;
}

.pv-nav__icon,
.pv-nav__arrow { display: none; }

.pv-nav a::after {
  background: var(--pv-color-orange);
  bottom: 20px;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scaleX(0);
  transition: transform 160ms ease;
  width: 100%;
}

.pv-nav a:hover::after,
.pv-nav a:focus-visible::after { transform: translateX(-50%) scaleX(1); }

.pv-button {
  align-items: center;
  background: var(--pv-color-orange);
  border: 1px solid var(--pv-color-orange);
  border-radius: 10px;
  color: var(--pv-color-white) !important;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 18px;
  justify-content: space-between;
  min-height: 50px;
  padding: 12px 20px;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.pv-button:hover {
  background: var(--pv-color-orange-dark);
  border-color: var(--pv-color-orange-dark);
  box-shadow: 0 10px 24px rgba(204, 96, 8, .2);
  transform: translateY(-2px);
}

.pv-button:focus-visible,
.pv-nav a:focus-visible,
.pv-menu-toggle:focus-visible,
.pv-circle-link:focus-visible,
.pv-form :is(input, select, button):focus-visible {
  outline: 3px solid #f2a269;
  outline-offset: 3px;
}

.pv-button .pv-icon { height: 19px; width: 19px; }

.pv-button--compact { min-height: 46px; padding-inline: 19px; }

.pv-button--outline {
  background: var(--pv-color-white);
  border-color: var(--pv-color-teal);
  color: var(--pv-color-teal-dark) !important;
}

.pv-button--outline:hover {
  background: var(--pv-color-mint);
  border-color: var(--pv-color-teal-dark);
  box-shadow: none;
}

.pv-header__cta { justify-self: end; }
.pv-nav .pv-nav__cta { display: none; }
.pv-menu-toggle { display: none; }

.pv-hero {
  background: var(--pv-color-white);
  min-height: 670px;
  overflow: clip;
  padding-block: clamp(66px, 7vw, 98px) 44px;
}

.pv-hero__grid {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
}

.pv-hero__content { max-width: 630px; position: relative; z-index: 5; }

.pv-eyebrow {
  color: var(--pv-color-teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .015em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.pv-hero h1 {
  font-size: clamp(3.1rem, 5.1vw, 5rem);
  line-height: .96;
  margin-bottom: 23px;
  max-width: 640px;
}

.pv-hero #pv-hero-title .pv-hero__headline-lead,
.pv-hero #pv-hero-title > em { display: block; text-wrap: balance; white-space: nowrap; }
.pv-hero #pv-hero-title > em { color: var(--pv-color-orange); font-style: normal; }
.pv-hero .pv-hero__mobile-only { display: none; }

.pv-hero__actions {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  max-width: 330px;
}

.pv-benefit-mini {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 34px 0 0;
  max-width: 430px;
  padding: 0;
}

.pv-benefit-mini li {
  align-items: center;
  color: #3d3a32;
  display: flex;
  flex-direction: column;
  font-size: 9px;
  font-weight: 650;
  gap: 7px;
  line-height: 1.22;
  text-align: center;
  text-transform: uppercase;
}

.pv-benefit-mini .pv-icon { color: var(--pv-color-olive); height: 31px; width: 31px; }

.pv-hero__visual {
  aspect-ratio: 1.16 / 1;
  margin-right: min(-6vw, -30px);
  min-height: 500px;
  position: relative;
}

.pv-hero__visual::before,
.pv-hero__visual::after {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.pv-hero__visual::before {
  background: radial-gradient(
    ellipse at center,
    rgba(73, 42, 23, .24) 0%,
    rgba(73, 42, 23, .14) 30%,
    rgba(73, 42, 23, .05) 58%,
    rgba(73, 42, 23, 0) 74%
  );
  bottom: 1%;
  filter: blur(6px);
  height: 10%;
  left: 8%;
  transform: rotate(-1deg);
  width: 74%;
}

.pv-hero__visual::after {
  background: radial-gradient(
    ellipse at center,
    rgba(73, 42, 23, .2) 0%,
    rgba(73, 42, 23, .1) 38%,
    rgba(73, 42, 23, 0) 72%
  );
  bottom: 17%;
  filter: blur(5px);
  height: 6%;
  right: -1%;
  transform: rotate(2deg);
  width: 30%;
}

.pv-hero__blob {
  background: transparent;
  border-radius: 50% 48% 44% 56% / 54% 46% 54% 46%;
  bottom: -3%;
  height: 30%;
  pointer-events: none;
  position: absolute;
  right: -3%;
  transform: rotate(-1.25deg);
  transform-origin: center;
  width: 95%;
  z-index: 0;
}

.pv-hero__blob::before {
  background:
    radial-gradient(
      ellipse at 78% 18%,
      rgba(255, 246, 232, .18) 0%,
      rgba(255, 246, 232, .07) 34%,
      rgba(255, 246, 232, 0) 58%
    ),
    radial-gradient(
      ellipse at 33% 86%,
      rgba(111, 51, 16, .115) 0%,
      rgba(111, 51, 16, .045) 39%,
      rgba(111, 51, 16, 0) 67%
    ),
    radial-gradient(
      circle at 28% 32%,
      rgba(255, 255, 255, .055) 0 .6px,
      transparent 1px
    ) 0 0 / 8px 9px,
    radial-gradient(
      circle at 68% 64%,
      rgba(92, 42, 14, .045) 0 .6px,
      transparent 1px
    ) 3px 2px / 13px 11px,
    linear-gradient(
      168deg,
      rgba(255, 255, 255, .05) 0%,
      rgba(255, 255, 255, 0) 42%,
      rgba(100, 44, 14, .045) 100%
    ),
    var(--pv-hero-shape-orange);
  border-radius: inherit;
  box-shadow:
    inset 0 14px 24px rgba(255, 240, 220, .045),
    inset 0 -24px 34px rgba(96, 42, 16, .045);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 2;
}

.pv-hero__blob::after {
  background: var(--pv-hero-shape-vertical);
  border-radius: 52% 48% 44% 56% / 24% 30% 70% 76%;
  bottom: 55%;
  content: "";
  height: 260%;
  position: absolute;
  right: 8%;
  transform: rotate(7deg);
  transform-origin: 50% 100%;
  width: 31%;
  z-index: 1;
}

.pv-hero__asset { position: absolute; z-index: 2; }
.pv-hero__asset picture,
.pv-hero__asset img { display: block; height: auto; width: 100%; }
.pv-hero__asset img { filter: drop-shadow(0 15px 17px rgba(57, 37, 20, .16)); }
.pv-hero__asset--bedding img { filter: drop-shadow(0 18px 20px rgba(73, 42, 23, .2)); }
.pv-hero__asset--primary img { filter: drop-shadow(0 clamp(12px, 1.2vw, 18px) clamp(9px, 1vw, 14px) rgba(73, 42, 23, .18)); }
.pv-hero__asset--foliage { right: -4%; top: -6%; width: 45%; z-index: 1; }
.pv-hero__asset--foliage img { filter: none; }
.pv-hero__asset--bird-toy { right: 13%; top: 1%; width: 34%; z-index: 4; }
.pv-hero__asset--bedding { right: -1%; top: 18%; width: 23%; z-index: 3; }
.pv-hero__asset--primary { bottom: -1%; isolation: isolate; left: 0; width: 78%; z-index: 5; }

.pv-hero__asset--primary::after {
  background: radial-gradient(
    ellipse at center,
    rgba(73, 42, 23, .38) 0%,
    rgba(73, 42, 23, .22) 34%,
    rgba(73, 42, 23, .08) 60%,
    rgba(73, 42, 23, 0) 76%
  );
  bottom: 0;
  content: "";
  filter: blur(6px);
  height: 10%;
  left: 6%;
  pointer-events: none;
  position: absolute;
  transform: scaleX(.98);
  width: 88%;
  z-index: -1;
}

.pv-section { padding-block: 52px; }

.pv-lines { background: var(--pv-color-white); padding-top: 10px; }

.pv-lines__grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pv-line-card {
  border: 1px solid rgba(49, 43, 37, .025);
  border-radius: var(--pv-radius-large);
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 310px;
  overflow: clip;
  position: relative;
}

.pv-line-card--cream { background: var(--pv-color-cream); }
.pv-line-card--sage { background: var(--pv-color-sage); }
.pv-line-card--mint { background: var(--pv-color-mint); }
.pv-line-card--peach { background: var(--pv-color-peach); }

.pv-line-card__copy { padding: 38px 12px 32px 36px; position: relative; z-index: 2; }

.pv-line-card h3 { font-size: clamp(1.8rem, 3vw, 2.25rem); line-height: 1.02; margin-bottom: 14px; }
.pv-line-card:nth-child(2) h3,
.pv-line-card:nth-child(3) h3 { color: var(--pv-color-teal-dark); }
.pv-line-card p { font-size: 14px; line-height: 1.45; max-width: 200px; }

.pv-circle-link {
  align-items: center;
  background: var(--pv-color-teal);
  border-radius: 50%;
  bottom: 34px;
  color: var(--pv-color-white) !important;
  display: flex;
  height: 44px;
  justify-content: center;
  position: absolute;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease;
  width: 44px;
}

.pv-circle-link:hover { background: var(--pv-color-teal-dark); transform: translateX(3px); }
.pv-circle-link .pv-icon { height: 20px; width: 20px; }

.pv-line-card__asset { align-self: stretch; min-width: 0; position: relative; z-index: 1; }
.pv-line-card__picture { display: block; position: absolute; }
.pv-line-card__image { display: block; filter: drop-shadow(0 13px 12px rgba(65, 40, 20, .13)); height: auto; object-fit: contain; width: 100%; }
.pv-line-card__picture--cama-premium { bottom: -1%; right: -19%; width: 126%; }
.pv-line-card__picture--calopsita-brinquedo-natural { bottom: -15%; right: -7%; width: 86%; }
.pv-line-card__picture--ninho-periquito { bottom: 8%; right: -8%; width: 116%; }
.pv-line-card__picture--maravalha-hamster { bottom: 8%; right: -2%; width: 120%; z-index: 2; }
.pv-line-card__picture--secondary { bottom: -21%; right: -10%; width: 106%; z-index: 1; }
.pv-line-card__decoration { bottom: 18px; fill: none; height: 75px; left: 36%; opacity: .55; position: absolute; stroke: #b2a35e; stroke-width: 1.3; width: 75px; }

.pv-featured { padding-block: 70px 88px; }

.pv-section-heading { margin: 0 auto 38px; max-width: 720px; text-align: center; }
.pv-section-heading__title { display: inline-flex; position: relative; }
.pv-section-heading h2 { font-size: clamp(2.25rem, 4vw, 2.8rem); line-height: 1; margin-bottom: 12px; }
.pv-section-heading p { color: #766d66; font-size: 14px; }
.pv-heart-doodle { color: var(--pv-color-orange); position: absolute; right: -45px; top: -13px; transform: rotate(-14deg); }
.pv-heart-doodle .pv-icon { height: 28px; width: 28px; }

.pv-products {
  display: grid;
  gap: 13px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pv-product-card {
  background: var(--pv-color-white);
  border: 1px solid var(--pv-color-border);
  border-radius: var(--pv-radius);
  display: flex;
  flex-direction: column;
  min-height: 390px;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pv-product-card__trigger {
  align-items: stretch;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex: 1;
  flex-direction: column;
  font: inherit;
  min-height: inherit;
  padding: 14px 14px 18px;
  text-align: left;
  width: 100%;
}
.pv-product-card__trigger:focus-visible { outline: 3px solid var(--pv-color-orange); outline-offset: -4px; }
@media (hover: hover) {
  .pv-product-card:hover { border-color: rgba(229, 112, 41, .48); box-shadow: 0 16px 34px rgba(71, 48, 30, .1); transform: translateY(-4px); }
}
.pv-product-card__asset { align-items: center; display: flex; height: 225px; justify-content: center; margin-bottom: 18px; }
.pv-product-card__picture { display: flex; height: 100%; justify-content: center; width: 100%; }
.pv-product-card__image { filter: drop-shadow(0 9px 9px rgba(65, 40, 20, .13)); height: 100%; object-fit: contain; width: 100%; }
.pv-product-card__picture--brinquedo-natural,
.pv-product-card__picture--casinha-passaros { width: 72%; }
.pv-product-card__picture--forracao-vivapet-2kg { width: 80%; }
.pv-product-card__picture--cama-premium .pv-product-card__image { transform: scale(1.15); }
.pv-product-card__name { color: var(--pv-color-text-strong); display: block; font-family: var(--pv-font-body); font-size: 15px; font-weight: 700; letter-spacing: -.012em; line-height: 1.35; margin-bottom: 14px; }
.pv-product-card__footer { align-items: center; display: flex; gap: 8px; justify-content: space-between; margin-top: auto; width: 100%; }
.pv-product-card__tag { align-self: flex-start; background: var(--pv-color-sage); border-radius: 999px; color: var(--pv-color-olive); font-size: 11px; font-weight: 700; padding: 5px 10px; }
.pv-product-card:first-child .pv-product-card__tag,
.pv-product-card:last-child .pv-product-card__tag { background: var(--pv-color-peach); color: var(--pv-color-orange-dark); }
.pv-product-card__details { align-items: center; color: var(--pv-color-teal); display: inline-flex; flex: 0 0 auto; font-size: 10px; font-weight: 750; gap: 3px; }
.pv-product-card__details .pv-icon { height: 14px; transition: transform 180ms ease; width: 14px; }
.pv-product-card__trigger:hover .pv-product-card__details .pv-icon { transform: translateX(3px); }
.pv-featured__action { display: flex; justify-content: center; margin-top: 34px; }
.pv-featured__action .pv-button { min-width: 310px; }

html.pv-product-dialog-open { overflow: hidden; }

.pv-product-dialog {
  background: transparent;
  border: 0;
  border-radius: 24px;
  color: var(--pv-color-text);
  max-height: calc(100dvh - 40px);
  max-width: 980px;
  overflow: auto;
  padding: 0;
  width: calc(100% - 40px);
}
.pv-product-dialog[open] { animation: pv-product-dialog-in 240ms ease-out both; }
.pv-product-dialog::backdrop { animation: pv-product-backdrop-in 200ms ease-out both; backdrop-filter: blur(7px); background: rgba(30, 22, 16, .58); }
.pv-product-dialog__surface { background: var(--pv-color-white); border: 1px solid rgba(255, 255, 255, .72); border-radius: inherit; box-shadow: 0 28px 80px rgba(43, 21, 3, .24); min-height: 580px; overflow: hidden; position: relative; }
.pv-product-dialog__close {
  align-items: center;
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--pv-color-border);
  border-radius: 50%;
  color: var(--pv-color-text-strong);
  cursor: pointer;
  display: flex;
  height: 46px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 18px;
  top: 18px;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
  width: 46px;
  z-index: 3;
}
.pv-product-dialog__close:hover { background: var(--pv-color-cream); color: var(--pv-color-orange-dark); transform: rotate(4deg); }
.pv-product-dialog__close:focus-visible { outline: 3px solid var(--pv-color-orange); outline-offset: 3px; }
.pv-product-dialog__close .pv-icon { height: 21px; width: 21px; }
.pv-product-dialog__layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); min-height: 580px; }
.pv-product-dialog__visual {
  align-items: center;
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, .9), transparent 34%),
    linear-gradient(145deg, var(--pv-color-cream), var(--pv-color-mint));
  display: flex;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
  padding: 54px 30px 40px;
  position: relative;
}
.pv-product-dialog__visual::after { border: 1px solid rgba(229, 112, 41, .18); border-radius: 50%; content: ""; height: 220px; position: absolute; right: -76px; top: -82px; width: 220px; }
.pv-product-dialog__picture { display: block; position: relative; width: 100%; z-index: 1; }
.pv-product-dialog__image { filter: drop-shadow(0 18px 18px rgba(65, 40, 20, .17)); margin-inline: auto; max-height: 455px; object-fit: contain; width: 100%; }
.pv-product-dialog__picture--brinquedo-natural,
.pv-product-dialog__picture--casinha-passaros,
.pv-product-dialog__picture--forracao-vivapet-2kg { width: 82%; }
.pv-product-dialog__content { align-self: center; padding: 64px 48px 44px; }
.pv-product-dialog__category { color: var(--pv-color-teal); display: block; font-size: 12px; font-weight: 800; letter-spacing: .055em; margin-bottom: 10px; text-transform: uppercase; }
.pv-product-dialog__content h2 { font-size: clamp(2.3rem, 4vw, 3.35rem); line-height: .98; margin-bottom: 16px; padding-right: 24px; }
.pv-product-dialog__summary { color: #655d56; font-size: 16px; line-height: 1.55; margin-bottom: 18px; max-width: 470px; }
.pv-product-dialog__audience { align-items: center; background: var(--pv-color-peach); border-radius: 12px; color: var(--pv-color-orange-dark); display: flex; font-size: 14px; gap: 10px; margin: 0 0 22px; padding: 11px 14px; width: fit-content; }
.pv-product-dialog__audience .pv-icon { flex: 0 0 21px; height: 21px; width: 21px; }
.pv-product-dialog__sizes { border-block: 1px solid var(--pv-color-border); margin-bottom: 22px; padding-block: 18px; }
.pv-product-dialog__sizes h3 { font-family: var(--pv-font-body); font-size: 13px; letter-spacing: 0; margin-bottom: 12px; }
.pv-product-dialog__size-groups { display: grid; gap: 10px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pv-product-dialog__size-group { background: var(--pv-color-cream); border: 1px solid var(--pv-color-border); border-radius: 12px; padding: 12px; }
.pv-product-dialog__size-group > strong { color: var(--pv-color-teal-dark); display: block; font-size: 12px; margin-bottom: 8px; }
.pv-product-dialog__size-group > div { display: flex; flex-wrap: wrap; gap: 6px; }
.pv-product-dialog__size-group span { background: var(--pv-color-white); border: 1px solid rgba(229, 112, 41, .28); border-radius: 999px; color: var(--pv-color-text-strong); font-size: 12px; font-weight: 750; padding: 5px 9px; white-space: nowrap; }
.pv-product-dialog__benefits { display: grid; gap: 10px; list-style: none; margin: 0 0 24px; padding: 0; }
.pv-product-dialog__benefits li { align-items: center; display: flex; font-size: 13px; gap: 10px; line-height: 1.35; }
.pv-product-dialog__benefits .pv-icon { color: var(--pv-color-olive); flex: 0 0 20px; height: 20px; width: 20px; }
.pv-product-dialog__cta { max-width: 370px; width: 100%; }

@keyframes pv-product-dialog-in {
  from { opacity: 0; transform: translateY(16px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pv-product-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.pv-wholesale {
  background: var(--pv-color-teal);
  color: var(--pv-color-white);
  isolation: isolate;
  margin-block: 56px 22px;
  min-height: 365px;
  padding-block: 105px 98px;
  position: relative;
}

.pv-wholesale::before,
.pv-wholesale::after { content: ""; pointer-events: none; position: absolute; z-index: 0; }
.pv-wholesale::before {
  background:
    radial-gradient(circle at 76% 32%, rgba(255, 255, 255, .13) 0%, rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 18% 88%, rgba(3, 91, 87, .42) 0%, rgba(3, 91, 87, 0) 38%),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .12) 1px, transparent 1.2px) 0 0 / 28px 28px;
  inset: 0;
  opacity: .62;
}
.pv-wholesale::after {
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(234, 245, 243, .12) 0%, rgba(234, 245, 243, .05) 38%, rgba(234, 245, 243, 0) 70%);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  right: 3%;
  top: 6%;
  width: min(38vw, 520px);
}

.pv-wave { display: block; fill: var(--pv-color-teal); height: 90px; left: 0; pointer-events: none; position: absolute; width: 100%; }
.pv-wave--top { bottom: calc(100% - 1px); }
.pv-wave--bottom { fill: var(--pv-color-white); left: 0; top: calc(100% - 1px); }

.pv-wholesale__grid {
  align-items: center;
  display: grid;
  gap: 75px;
  grid-template-columns: .9fr 1.1fr;
  position: relative;
  z-index: 2;
}

.pv-wholesale h2 { color: var(--pv-color-white); font-size: clamp(2.5rem, 4.3vw, 3.7rem); line-height: .98; margin-bottom: 18px; max-width: 520px; }
.pv-wholesale__copy p { font-size: 16px; margin-bottom: 25px; max-width: 460px; }
.pv-wholesale__copy .pv-button { min-width: 345px; }

.pv-wholesale__benefits {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.pv-wholesale__benefits li {
  align-items: center;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
  display: flex;
  font-size: 15px;
  font-weight: 650;
  gap: 16px;
  line-height: 1.35;
  min-height: 102px;
  padding: 18px 20px;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.pv-wholesale__benefits li:hover { background: rgba(255, 255, 255, .11); border-color: rgba(255, 255, 255, .34); box-shadow: 0 12px 28px rgba(3, 55, 52, .14), inset 0 1px 0 rgba(255, 255, 255, .1); transform: translateY(-3px); }
.pv-wholesale__benefits span { align-items: center; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255,255,255,.52); border-radius: 50%; display: flex; flex: 0 0 62px; height: 62px; justify-content: center; }
.pv-wholesale__benefits .pv-icon { height: 31px; width: 31px; }
.pv-wholesale__heart { color: rgba(255,255,255,.18); position: absolute; right: 22px; top: -82px; transform: rotate(-12deg); }
.pv-wholesale__heart .pv-icon { height: 96px; stroke-width: .7; width: 96px; }

@keyframes pv-wholesale-benefit-in {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.pv-process { padding-block: 102px 70px; }
.pv-process .pv-section-heading { margin-bottom: 44px; }

.pv-process__steps {
  counter-reset: pv-step;
  display: grid;
  gap: 62px;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 0 auto;
  max-width: 1020px;
  padding: 0;
  position: relative;
}

.pv-process__steps::before {
  border-top: 2px dashed #cbbfb2;
  content: "";
  left: 18%;
  position: absolute;
  right: 18%;
  top: 60px;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 900ms ease;
}

.pv-process__step { align-items: center; display: grid; gap: 16px; grid-template-columns: 120px 1fr; position: relative; }
.pv-process__number { align-items: center; background: var(--pv-color-orange); border: 3px solid var(--pv-color-white); border-radius: 50%; color: var(--pv-color-white); display: flex; font-size: 13px; font-weight: 800; height: 30px; justify-content: center; left: -8px; position: absolute; top: 8px; width: 30px; z-index: 2; }
.pv-process__icon { align-items: center; background: var(--pv-color-background); border: 1px solid var(--pv-color-border); border-radius: 50%; color: var(--pv-color-olive); display: flex; height: 120px; justify-content: center; position: relative; width: 120px; z-index: 1; }
.pv-process__icon .pv-icon { height: 50px; width: 50px; }
.pv-process__step h3 { font-family: var(--pv-font-body); font-size: 16px; letter-spacing: -.01em; line-height: 1.25; margin-bottom: 8px; }
.pv-process__step p { color: #746a62; font-size: 12px; line-height: 1.45; margin-bottom: 0; }

.pv-lead { padding: 25px 0 0; }
.pv-lead__stage {
  align-items: end;
  background: linear-gradient(125deg, #f7eee3 0%, #fbf9f6 54%, #f1f2df 100%);
  border-radius: var(--pv-radius-large);
  display: grid;
  grid-template-columns: 38% 62%;
  min-height: 500px;
  overflow: clip;
  padding: 22px 34px 0 0;
  position: relative;
}

.pv-lead__stage::after { border: 1px solid rgba(229,112,41,.13); border-radius: 50%; content: ""; height: 330px; position: absolute; right: -90px; top: -110px; width: 500px; }
.pv-lead__visual { align-self: stretch; min-width: 0; position: relative; z-index: 1; }
.pv-lead__visual picture,
.pv-lead__visual img { display: block; height: auto; width: 100%; }
.pv-lead__foliage { bottom: -5%; left: 1%; position: absolute; width: 88%; z-index: 1; }
.pv-lead__bird { bottom: -3%; left: 15%; position: absolute; width: 72%; z-index: 2; }
.pv-lead__bird img { filter: drop-shadow(0 13px 12px rgba(65, 40, 20, .15)); }

@keyframes pv-lead-card-attention {
  0%, 100% { box-shadow: var(--pv-shadow-soft); transform: translateY(0) scale(1); }
  35% { box-shadow: 0 22px 58px rgba(229, 112, 41, .17); transform: translateY(-5px) scale(1.008); }
  68% { box-shadow: 0 16px 44px rgba(71, 48, 30, .1); transform: translateY(1px) scale(.998); }
}

@keyframes pv-lead-card-halo {
  0%, 58%, 100% { box-shadow: 0 0 0 0 rgba(229, 112, 41, 0); opacity: 0; transform: scale(1); }
  64% { box-shadow: 0 0 0 2px rgba(229, 112, 41, .16); opacity: .75; transform: scale(1); }
  73% { box-shadow: 0 0 0 13px rgba(229, 112, 41, 0); opacity: 0; transform: scale(1.018); }
}

@keyframes pv-lead-contact-requested {
  0%, 100% { box-shadow: var(--pv-shadow-soft); transform: scale(1); }
  18%, 62% { box-shadow: 0 0 0 6px rgba(229, 112, 41, .34), 0 24px 60px rgba(91, 49, 20, .18); transform: scale(1.012); }
  40%, 82% { box-shadow: 0 0 0 2px rgba(229, 112, 41, .14), var(--pv-shadow-soft); transform: scale(1); }
}

@keyframes pv-lead-contact-notice-in {
  from { opacity: 0; transform: translateY(-7px); }
  to { opacity: 1; transform: translateY(0); }
}

.pv-lead__card {
  align-self: center;
  background: var(--pv-color-white);
  border-radius: var(--pv-radius);
  box-shadow: var(--pv-shadow-soft);
  margin-block: 26px;
  padding: 30px 32px 24px;
  position: relative;
  z-index: 2;
}

.pv-lead__card::before {
  border: 1px solid rgba(229, 112, 41, .16);
  border-radius: inherit;
  content: "";
  inset: -3px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.pv-lead__card h2 { font-size: clamp(2rem, 3.3vw, 2.6rem); line-height: 1; margin-bottom: 8px; }
.pv-lead__card header > p { color: #746a62; font-size: 12px; margin-bottom: 18px; }
.pv-lead__card header > .pv-lead__contact-notice {
  align-items: flex-start;
  background: #fff6ed;
  border: 1px solid rgba(229, 112, 41, .34);
  border-left: 4px solid var(--pv-color-orange);
  border-radius: 9px;
  color: #61422d;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.45;
  margin: 0 0 18px;
  padding: 10px 12px;
}
.pv-lead__contact-notice[hidden] { display: none; }
.pv-lead__contact-notice:not([hidden]) { animation: pv-lead-contact-notice-in 280ms ease-out both; }
.pv-lead__contact-notice strong { color: var(--pv-color-orange-dark); font-size: 12px; }
.pv-lead__contact-notice span { font-size: 11px; }
.pv-lead__card.is-contact-requested { box-shadow: 0 0 0 4px rgba(229, 112, 41, .3), var(--pv-shadow-soft); }
.pv-form { display: grid; gap: 14px; }
.pv-form [hidden] { display: none; }
.pv-form__trap { height: 1px; left: -10000px; overflow: hidden; position: absolute; top: auto; width: 1px; }

.pv-form__progress { display: grid; gap: 8px; }
.pv-form__progress-head { align-items: baseline; display: flex; gap: 12px; justify-content: space-between; }
.pv-form__step-count { color: var(--pv-color-orange-dark); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.pv-form__step-title { color: #665d55; font-size: 11px; font-weight: 650; text-align: right; }
.pv-form__progress-track { background: #f2ece6; border-radius: 999px; height: 5px; overflow: hidden; }
.pv-form__progress-track span { background: var(--pv-color-orange); border-radius: inherit; display: block; height: 100%; transition: width 220ms ease; width: 25%; }

.pv-form__steps { display: grid; gap: 22px; min-height: 178px; }
.pv-form__step { border: 0; margin: 0; min-inline-size: 0; padding: 0; }
.pv-form[data-pv-wizard-ready] .pv-form__step:not([hidden]) { animation: pv-form-step-in 220ms ease both; }
.pv-form__step legend {
  color: var(--pv-color-text-strong);
  font-family: var(--pv-font-display);
  font-size: clamp(1.45rem, 2.1vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.08;
  margin-bottom: 6px;
  width: 100%;
}
.pv-form__step-help { color: #746a62; font-size: 11px; margin: 0 0 14px; }
.pv-form__fields { display: grid; gap: 10px 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pv-form__fields--name-segment,
.pv-form__fields--company { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pv-form__fields--address { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.pv-field--name,
.pv-field--company-name { grid-column: span 2; }
.pv-field--postcode { grid-column: span 3; }
.pv-field--city { grid-column: span 7; }
.pv-field--state { grid-column: span 2; }
.pv-field--street { grid-column: span 9; }
.pv-field--number { grid-column: span 3; }
.pv-field--complement { grid-column: span 7; }
.pv-field--neighborhood { grid-column: span 5; }
.pv-field { display: flex; flex-direction: column; min-width: 0; }
.pv-field--wide { grid-column: 1 / -1; }
.pv-field label { font-size: 11px; font-weight: 650; margin-bottom: 5px; }
.pv-field input,
.pv-field select { background: var(--pv-color-white); border: 1px solid var(--pv-color-border); border-radius: 7px; color: var(--pv-color-text); font: inherit; font-size: 13px; min-height: 44px; padding: 9px 12px; width: 100%; }
.pv-field input:disabled,
.pv-field select:disabled { background: #f4f1ee; color: #9b938c; cursor: not-allowed; opacity: .72; }
.pv-field input::placeholder { color: #a79f98; }
.pv-field [aria-invalid="true"] { border-color: #b8322a; }
.pv-field__error,
.pv-field__status,
.pv-form__choice-error { display: block; font-size: 10px; line-height: 1.35; padding-top: 3px; }
.pv-field__error,
.pv-form__choice-error { color: #a72b25; }
.pv-field__status { color: #766d66; }
.pv-field__status[data-state="loading"] { color: var(--pv-color-teal-dark); }
.pv-field__status[data-state="success"] { color: var(--pv-color-teal); font-weight: 650; }
.pv-field__status[data-state="warning"] { color: #9a4e1c; }
.pv-field__error:empty,
.pv-field__status:empty,
.pv-form__choice-error:empty { display: none; }

.pv-form__type-options { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pv-form__type-option { cursor: pointer; position: relative; }
.pv-form__type-option input { height: 1px; opacity: 0; position: absolute; width: 1px; }
.pv-form__type-option span {
  align-items: flex-start;
  background: var(--pv-color-white);
  border: 1px solid var(--pv-color-border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  justify-content: center;
  min-height: 78px;
  padding: 13px 15px;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}
.pv-form__type-option strong { color: var(--pv-color-text-strong); font-size: 13px; }
.pv-form__type-option small { color: #766d66; font-size: 10px; }
.pv-form__type-option:hover span { border-color: #d9c8b9; transform: translateY(-1px); }
.pv-form__type-option input:checked + span { background: var(--pv-color-cream); border-color: var(--pv-color-orange); box-shadow: 0 8px 18px rgba(229, 112, 41, .1); }
.pv-form__type-option input:focus-visible + span { outline: 3px solid #f2a269; outline-offset: 3px; }

.pv-form__actions { display: flex; gap: 10px; }
.pv-form__back,
.pv-form__next,
.pv-form__submit { cursor: pointer; font-family: inherit; }
.pv-form__back {
  align-items: center;
  background: var(--pv-color-white);
  border: 1px solid var(--pv-color-teal);
  border-radius: 10px;
  color: var(--pv-color-teal-dark);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 7px;
  justify-content: center;
  min-height: 50px;
  padding: 11px 17px;
}
.pv-form__back:hover { background: var(--pv-color-mint); border-color: var(--pv-color-teal-dark); }
.pv-form__actions button:disabled { cursor: wait; opacity: .68; transform: none; }
.pv-form__next,
.pv-form__submit { flex: 1; width: 100%; }
.pv-form__noscript { background: var(--pv-color-cream); border-radius: 8px; color: #7e4b25; font-size: 11px; margin: 0; padding: 10px 12px; }
.pv-form__turnstile { margin-top: 14px; min-height: 65px; width: 100%; }
.pv-form__privacy { align-items: flex-start; color: #766d66; display: flex; font-size: 10px; gap: 6px; line-height: 1.4; margin: -2px 0 0; }
.pv-form__privacy .pv-icon { flex: 0 0 14px; height: 14px; margin-top: 1px; width: 14px; }
.pv-form__status { color: var(--pv-color-teal-dark); font-size: 12px; font-weight: 650; margin: 0; }
.pv-form__status[data-state="error"] { color: #a72b25; }
.pv-form__status[data-state="loading"] { color: #766d66; }
.pv-form__status[data-state="success"] { color: var(--pv-color-teal-dark); }
.pv-form__status:empty { display: none; }

html.pv-form-success-dialog-open { overflow: hidden; }
.pv-form-success-dialog {
  background: transparent;
  border: 0;
  color: var(--pv-color-text);
  max-width: 510px;
  padding: 0;
  width: calc(100% - 32px);
}
.pv-form-success-dialog[open] { animation: pv-form-success-in 240ms ease-out both; }
.pv-form-success-dialog::backdrop { animation: pv-product-backdrop-in 200ms ease-out both; backdrop-filter: blur(7px); background: rgba(30, 22, 16, .62); }
.pv-form-success-dialog__surface {
  align-items: center;
  background: linear-gradient(145deg, var(--pv-color-white), #fbf8f2);
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(43, 21, 3, .26);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(34px, 7vw, 52px);
  position: relative;
  text-align: center;
}
.pv-form-success-dialog__surface::before { border: 1px solid rgba(229, 112, 41, .16); border-radius: 50%; content: ""; height: 190px; position: absolute; right: -92px; top: -105px; width: 230px; }
.pv-form-success-dialog__icon { align-items: center; background: var(--pv-color-teal); border-radius: 50%; box-shadow: 0 12px 28px rgba(3, 121, 114, .2); color: var(--pv-color-white); display: flex; font-size: 28px; font-weight: 800; height: 68px; justify-content: center; margin-bottom: 20px; width: 68px; }
.pv-form-success-dialog__eyebrow { color: var(--pv-color-orange-dark); font-size: 11px; font-weight: 800; letter-spacing: .1em; margin-bottom: 8px; text-transform: uppercase; }
.pv-form-success-dialog h2 { color: var(--pv-color-text-strong); font-size: clamp(2.15rem, 7vw, 3rem); line-height: 1; margin: 0 0 14px; }
.pv-form-success-dialog p { color: #655d56; font-size: 14px; line-height: 1.6; margin: 0 0 26px; max-width: 390px; }
.pv-form-success-dialog__close { min-height: 52px; width: min(100%, 300px); }
.pv-form-success-dialog__close:focus-visible { outline: 3px solid var(--pv-color-orange); outline-offset: 3px; }

@keyframes pv-form-success-in {
  from { opacity: 0; transform: translateY(14px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pv-form-step-in {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}

.pv-footer { background: var(--pv-color-white); padding-top: 52px; }
.pv-footer__grid { display: grid; gap: 40px; grid-template-columns: 1.25fr .75fr 1.2fr 1fr; padding-bottom: 46px; }
.pv-footer__brand { padding-right: 24px; }
.pv-footer__brand p { color: #716860; font-size: 12px; margin: 18px 0 10px; max-width: 250px; }
.pv-footer__brand .pv-data-pending { color: #9a4e1c; font-size: 10px; }
.pv-footer__cta,
.pv-footer__mobile-sections { display: none; }
.pv-footer__column { border-left: 1px solid #eee7e1; display: flex; flex-direction: column; gap: 7px; padding-left: 34px; }
.pv-footer__column h2 { color: #655d56; font-family: var(--pv-font-body); font-size: 11px; letter-spacing: .045em; margin-bottom: 8px; text-transform: uppercase; }
.pv-footer__column a,
.pv-footer__column p { color: #504a45; font-size: 11px; line-height: 1.45; margin: 0; text-decoration: none; }
.pv-footer__column a:hover { color: var(--pv-color-orange-dark); text-decoration: underline; }
.pv-contact-pending { color: #8a5b39 !important; }
.pv-footer__bar { background: var(--pv-color-teal-dark); color: var(--pv-color-white); font-size: 10px; }
.pv-footer__bar .pv-container { align-items: center; display: flex; justify-content: space-between; min-height: 38px; }
.pv-footer__bar p { margin: 0; }
.pv-footer__bar div div { display: flex; gap: 26px; }
.pv-footer__mobile-meta { display: none; }

.pv-has-motion .pv-reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }
.pv-has-motion .pv-reveal.is-visible { opacity: 1; transform: translateY(0); }
.pv-has-motion .pv-hero__content > :nth-child(2) { transition-delay: 80ms; }
.pv-has-motion .pv-hero__content > :nth-child(3) { transition-delay: 140ms; }
.pv-has-motion .pv-hero__content > :nth-child(4) { transition-delay: 200ms; }
.pv-has-motion .pv-products > :nth-child(2),
.pv-has-motion .pv-lines__grid > :nth-child(2) { transition-delay: 70ms; }
.pv-has-motion .pv-products > :nth-child(3),
.pv-has-motion .pv-lines__grid > :nth-child(3) { transition-delay: 140ms; }
.pv-has-motion .pv-products > :nth-child(4),
.pv-has-motion .pv-lines__grid > :nth-child(4) { transition-delay: 210ms; }
.pv-has-motion .pv-products > :nth-child(5) { transition-delay: 280ms; }
.pv-has-motion .pv-wholesale__benefits.is-visible li { animation: pv-wholesale-benefit-in 520ms ease-out backwards; }
.pv-has-motion .pv-wholesale__benefits.is-visible li:nth-child(1) { animation-delay: 90ms; }
.pv-has-motion .pv-wholesale__benefits.is-visible li:nth-child(2) { animation-delay: 180ms; }
.pv-has-motion .pv-wholesale__benefits.is-visible li:nth-child(3) { animation-delay: 270ms; }
.pv-has-motion .pv-wholesale__benefits.is-visible li:nth-child(4) { animation-delay: 360ms; }
.pv-has-motion .pv-process__steps.pv-reveal { opacity: 1; transform: none; transition: none; }
.pv-has-motion .pv-process__steps::before { transform: scaleX(0); }
.pv-has-motion .pv-process__steps.is-visible::before { transform: scaleX(1); }
.pv-has-motion .pv-process__step { --pv-process-delay: 120ms; transform: translateY(14px); transition-delay: var(--pv-process-delay); }
.pv-has-motion .pv-process__step:nth-child(2) { --pv-process-delay: 280ms; }
.pv-has-motion .pv-process__step:nth-child(3) { --pv-process-delay: 440ms; }
.pv-has-motion .pv-process__step .pv-process__icon,
.pv-has-motion .pv-process__step .pv-process__number {
  opacity: 0;
  transform: scale(.9);
  transition: opacity 420ms ease calc(var(--pv-process-delay) + 70ms), transform 420ms ease calc(var(--pv-process-delay) + 70ms);
}
.pv-has-motion .pv-process__step.is-visible .pv-process__icon,
.pv-has-motion .pv-process__step.is-visible .pv-process__number { opacity: 1; transform: scale(1); }
.pv-has-motion .pv-lead.is-visible .pv-lead__card { animation: pv-lead-card-attention 1050ms ease-out 280ms both; }
.pv-has-motion .pv-lead.is-visible .pv-lead__card:not(.has-user-interaction)::before { animation: pv-lead-card-halo 9s ease-out 1600ms infinite; }
.pv-has-motion .pv-lead.is-visible .pv-lead__card.is-contact-requested { animation: pv-lead-contact-requested 1600ms ease-out both; }
.pv-has-motion .pv-lead.is-visible .pv-lead__card:hover::before,
.pv-has-motion .pv-lead.is-visible .pv-lead__card:focus-within::before { animation-play-state: paused; }
.pv-has-motion .pv-hero__asset--bird-toy { animation: pv-float 5.8s ease-in-out .5s infinite; }
.pv-has-motion .pv-hero__asset--bedding { animation: pv-float 5s ease-in-out infinite; }
.pv-has-motion .pv-hero__asset--primary { animation: pv-float 6.4s ease-in-out .8s infinite; }

@keyframes pv-float { 0%, 100% { margin-top: 0; } 50% { margin-top: -6px; } }

@keyframes pv-hero-background-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(2.5vw, 1vw, 0) scale(1.05); }
}

@keyframes pv-menu-panel-in {
  from { opacity: 0; transform: translateY(-8px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (min-width: 821px) {
  .pv-hero {
    background: linear-gradient(115deg, #fff 0%, #fff 34%, rgba(250, 240, 226, .48) 68%, rgba(238, 244, 232, .6) 100%);
    isolation: isolate;
    position: relative;
  }
  .pv-hero::before,
  .pv-hero::after {
    aspect-ratio: 1;
    border-radius: 50%;
    content: "";
    pointer-events: none;
    position: absolute;
    z-index: 0;
  }
  .pv-hero::before {
    animation: pv-hero-background-drift 22s ease-in-out infinite;
    background: radial-gradient(circle, rgba(249, 236, 228, .7) 0%, rgba(250, 240, 226, .34) 46%, rgba(250, 240, 226, 0) 72%);
    left: 7%;
    top: -28%;
    width: clamp(360px, 38vw, 650px);
  }
  .pv-hero::after {
    animation: pv-hero-background-drift 26s ease-in-out -9s infinite reverse;
    background: radial-gradient(circle, rgba(234, 245, 243, .72) 0%, rgba(238, 244, 232, .36) 48%, rgba(238, 244, 232, 0) 73%);
    bottom: -32%;
    right: -5%;
    width: clamp(420px, 44vw, 740px);
  }
  .pv-hero__grid { position: relative; z-index: 1; }
  .pv-hero__visual { margin-right: 0; }
  .pv-hero #pv-hero-title > em {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    letter-spacing: -.035em;
  }
  .pv-process__step > div {
    background: var(--pv-color-white);
    box-shadow: 0 0 0 8px var(--pv-color-white);
    position: relative;
    z-index: 1;
  }
}

@media (min-width: 1101px) {
  .pv-hero__grid { grid-template-columns: minmax(0, 48fr) minmax(0, 52fr); }
  .pv-hero__content { margin-left: 0; max-width: 680px; }
  .pv-hero h1 { font-size: clamp(3.2rem, 4.7vw, 4.35rem); max-width: none; width: clamp(510px, 45.8vw, 680px); }
  .pv-hero__visual { margin-left: 0; }
  .pv-hero__visual::after { right: 0; }
  .pv-hero__blob { right: 0; }
  .pv-hero__asset--foliage { right: 20px; top: calc(-6% + 38px); width: 51%; }
  .pv-hero__asset--bird-toy { right: calc(13% + 20px); top: calc(1% + 38px); width: 42.5%; }
  .pv-hero__asset--bedding { bottom: calc(27% - 68px); right: 0; top: auto; width: 34%; }
}

@media (max-width: 1100px) {
  .pv-header__inner { grid-template-columns: 155px 1fr 170px; }
  .pv-nav { gap: 18px; }
  .pv-nav a { font-size: 12px; }
  .pv-header__cta { font-size: 12px; padding-inline: 14px; }
  .pv-hero { min-height: 590px; }
  .pv-hero__grid { grid-template-columns: 48% 52%; }
  .pv-hero__visual { min-height: 420px; }
  .pv-hero__visual::after { right: 6%; width: 28%; }
  .pv-hero h1 { font-size: clamp(3rem, 5.3vw, 4rem); }
  .pv-hero__blob { right: 6%; width: 93%; }
  .pv-hero__asset--bird-toy { right: calc(13% + 14px); top: calc(1% + 26px); width: 39%; }
  .pv-hero__asset--bedding { bottom: calc(27% - 40px); right: calc(6% + 8px); top: auto; width: 29%; }
  .pv-hero__asset--foliage { right: 34px; top: calc(-6% + 26px); width: 46%; }
  .pv-line-card { min-height: 280px; }
  .pv-line-card__copy { padding: 30px 8px 25px 28px; }
  .pv-line-card h3 { font-size: 1.8rem; }
  .pv-product-card { min-height: 350px; }
  .pv-product-card__trigger { padding: 10px 10px 15px; }
  .pv-product-card__name { font-size: 13px; }
  .pv-wholesale__grid { gap: 38px; }
  .pv-process__steps { gap: 28px; }
  .pv-process__step { gap: 12px; grid-template-columns: 100px 1fr; }
  .pv-process__icon { height: 100px; width: 100px; }
}

@media (min-width: 960px) and (max-width: 1100px) {
  .pv-hero h1 { max-width: none; width: calc(100% + 54px); }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 72px; }
  .pv-header, .pv-header__inner { min-height: 72px; }
  .pv-header__inner { grid-template-columns: 1fr auto; }
  .pv-logo__picture { width: 130px; }
  .pv-menu-toggle { align-items: center; background: transparent; border: 1px solid var(--pv-color-border); border-radius: 12px; color: var(--pv-color-text-strong); display: flex; height: 46px; justify-content: center; padding: 0; transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease; width: 46px; }
  .pv-menu-toggle__close { display: none; }
  .pv-header.is-menu-open .pv-menu-toggle { background: var(--pv-color-cream); border-color: rgba(229, 112, 41, .5); color: var(--pv-color-orange-dark); }
  .pv-header.is-menu-open .pv-menu-toggle__open { display: none; }
  .pv-header.is-menu-open .pv-menu-toggle__close { display: inline; }
  .pv-nav {
    align-items: stretch;
    background: linear-gradient(145deg, #fff 0%, #fffaf4 58%, var(--pv-color-mint) 100%);
    border: 1px solid var(--pv-color-border);
    border-radius: 18px;
    box-shadow: 0 22px 48px rgba(49, 43, 37, .14);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 12px;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 10px 14px 14px;
    position: absolute;
    right: 12px;
    top: calc(100% + 8px);
  }
  .pv-header.is-menu-open .pv-nav { animation: pv-menu-panel-in 220ms ease-out both; display: flex; }
  .pv-nav > a:not(.pv-nav__cta) { align-items: center; border-bottom: 1px solid rgba(232, 222, 211, .72); display: grid; font-size: 14px; font-weight: 650; gap: 12px; grid-template-columns: 38px minmax(0, 1fr) 18px; min-height: 58px; padding: 8px 2px; }
  .pv-nav > a:nth-last-child(2) { border-bottom: 0; }
  .pv-nav__icon { align-items: center; background: var(--pv-color-cream); border: 1px solid rgba(229, 112, 41, .15); border-radius: 50%; color: var(--pv-color-orange-dark); display: flex; height: 38px; justify-content: center; width: 38px; }
  .pv-nav__icon .pv-icon { height: 19px; width: 19px; }
  .pv-nav__arrow { align-items: center; color: var(--pv-color-teal); display: flex; justify-content: flex-end; }
  .pv-nav__arrow .pv-icon { height: 16px; width: 16px; }
  .pv-nav .pv-nav__cta { display: flex; font-size: 14px; margin-top: 12px; min-height: 50px; padding: 12px 16px; width: 100%; }
  .pv-nav__cta .pv-icon { height: 18px; width: 18px; }
  .pv-nav a::after { display: none; }
  .pv-header__cta { display: none; }
  .pv-hero { padding-block: 58px 34px; }
  .pv-hero__grid { grid-template-columns: minmax(0, 1fr); }
  .pv-hero__content,
  .pv-hero__visual { max-width: 100%; min-width: 0; }
  .pv-hero h1 { font-size: clamp(3.1rem, 9vw, 4.4rem); }
  .pv-hero__visual { margin: 45px 0 0; min-height: 480px; width: 100%; }
  .pv-hero__visual::before { left: 18%; width: 64%; }
  .pv-hero__visual::after { right: 0; width: 30%; }
  .pv-hero__blob { bottom: -2%; height: 27%; right: 0; width: 82%; }
  .pv-hero__blob::after { bottom: 48%; height: 300%; right: 7%; width: 34%; }
  .pv-hero__asset--primary { left: 7%; width: 76%; }
  .pv-hero__asset--bird-toy { right: calc(13% + 10px); top: calc(1% + 18px); width: 35%; }
  .pv-hero__asset--bedding { bottom: calc(25% - 36px); right: calc(1% + 7px); top: auto; width: 28%; }
  .pv-hero__asset--foliage { right: 10px; top: calc(-6% + 18px); width: 45%; }
  .pv-lines { padding-top: 34px; }
  .pv-lines__grid { gap: 18px; }
  .pv-line-card { grid-template-columns: 50% 50%; min-height: 310px; }
  .pv-line-card__copy { padding: 28px 10px 26px 24px; }
  .pv-line-card h3 { font-size: 1.6rem; }
  .pv-line-card p { font-size: 12px; }
  .pv-products { gap: 14px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pv-product-card { min-height: 350px; }
  .pv-wholesale { padding-block: 85px; }
  .pv-wholesale__grid { grid-template-columns: 1fr; }
  .pv-wholesale__benefits { max-width: 600px; }
  .pv-process__steps { gap: 22px; }
  .pv-process__step { grid-template-columns: 1fr; text-align: center; }
  .pv-process__icon { margin: 0 auto; }
  .pv-process__number { left: calc(50% - 62px); }
  .pv-process__steps::before { left: 16%; right: 16%; }
  .pv-lead__stage { grid-template-columns: 34% 66%; padding-right: 18px; }
  .pv-lead__visual { padding-left: 12px; }
  .pv-lead__card { padding-inline: 24px; }
  .pv-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .pv-footer__column:nth-child(3) { border-left: 0; padding-left: 0; }
}

@media (min-width: 601px) and (max-width: 820px) {
  .pv-hero #pv-hero-title { font-size: clamp(2.75rem, 7vw, 3.6rem); }
  .pv-hero #pv-hero-title > em { font-size: clamp(2rem, 5.9vw, 3rem); letter-spacing: -.035em; }
}

@media (max-width: 600px) {
  .pv-section { padding-block: 42px; }
  .pv-hero {
    background: linear-gradient(145deg, #fff 0%, rgba(250, 240, 226, .48) 58%, rgba(238, 244, 232, .6) 100%);
    isolation: isolate;
    padding-top: 48px;
    position: relative;
  }
  .pv-hero::before,
  .pv-hero::after {
    aspect-ratio: 1;
    border-radius: 50%;
    content: "";
    pointer-events: none;
    position: absolute;
    z-index: 0;
  }
  .pv-hero::before {
    animation: pv-hero-background-drift 22s ease-in-out infinite;
    background: radial-gradient(circle, rgba(249, 236, 228, .7) 0%, rgba(250, 240, 226, .34) 46%, rgba(250, 240, 226, 0) 72%);
    left: -18%;
    top: 4%;
    width: clamp(300px, 92vw, 430px);
  }
  .pv-hero::after {
    animation: pv-hero-background-drift 26s ease-in-out -9s infinite reverse;
    background: radial-gradient(circle, rgba(234, 245, 243, .72) 0%, rgba(238, 244, 232, .36) 48%, rgba(238, 244, 232, 0) 73%);
    bottom: 5%;
    right: -24%;
    width: clamp(340px, 104vw, 480px);
  }
  .pv-hero__grid { position: relative; z-index: 1; }
  .pv-eyebrow { font-size: 11px; }
  .pv-hero #pv-hero-title {
    font-size: clamp(2.65rem, 12vw, 3.35rem);
    line-height: .93;
    margin-inline: 0;
    max-width: 100%;
    text-align: left;
    text-wrap: balance;
    width: 100%;
  }
  .pv-hero #pv-hero-title > .pv-hero__desktop-only { display: none; }
  .pv-hero #pv-hero-title > .pv-hero__title-mobile { display: block; }
  .pv-hero #pv-hero-title .pv-hero__title-mobile > span { display: block; white-space: nowrap; }
  .pv-hero #pv-hero-title .pv-hero__title-mobile em > span { display: inline; }
  .pv-hero #pv-hero-title .pv-hero__title-mobile > span { font-size: clamp(3.15rem, calc(18.6vw - .48rem), 6.5rem); }
  .pv-hero #pv-hero-title .pv-hero__title-mobile em {
    color: var(--pv-color-orange);
    display: block;
    font-size: clamp(1.56rem, calc(8.9vw - .24rem), 3.1rem);
    font-style: normal;
    line-height: .93;
    margin-top: .1em;
    white-space: nowrap;
  }
  .pv-hero__intro { font-size: 15px; }
  .pv-hero .pv-hero__desktop-only { display: none; }
  .pv-hero .pv-hero__mobile-only { display: inline; }
  .pv-hero .pv-hero__actions { gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 20px; max-width: none; }
  .pv-hero .pv-hero__actions .pv-button { border-radius: 8px; font-size: clamp(10px, 2.8vw, 12px); gap: 6px; min-height: 48px; padding: 9px 10px; white-space: nowrap; width: 100%; }
  .pv-hero .pv-hero__actions .pv-button .pv-icon { height: 15px; width: 15px; }
  .pv-hero .pv-benefit-mini {
    background: var(--pv-color-cream);
    border: 1px solid var(--pv-color-border);
    border-radius: 14px;
    gap: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 22px 0 0;
    max-width: none;
    padding: 8px;
  }
  .pv-hero .pv-benefit-mini li { font-size: 11px; gap: 8px; line-height: 1.25; padding: 12px 8px; text-transform: none; }
  .pv-hero .pv-benefit-mini li:nth-child(odd) { border-right: 1px solid var(--pv-color-border); }
  .pv-hero .pv-benefit-mini li:nth-child(-n+2) { border-bottom: 1px solid var(--pv-color-border); }
  .pv-hero .pv-benefit-mini .pv-icon { height: 35px; width: 35px; }
  .pv-hero .pv-benefit-mini .pv-hero__mobile-only { display: block; }
  .pv-hero .pv-hero__visual { margin: 18px 0 0; min-height: clamp(330px, 100vw, 390px); }
  .pv-hero__visual::before { filter: blur(6px); left: 10%; width: 74%; }
  .pv-hero__visual::after { filter: blur(4px); }
  .pv-hero__blob { bottom: -2%; height: 24%; right: -2%; width: 92%; }
  .pv-hero__blob::after { bottom: 45%; height: 340%; right: 8%; width: 34%; }
  .pv-hero__asset--foliage { right: calc(-4% + 6px); top: 10px; width: 52%; }
  .pv-hero__asset--bird-toy { right: calc(13% + 6px); top: 10px; width: 39%; }
  .pv-hero__asset--bedding { bottom: calc(22% - 20px); right: calc(-2% + 4px); top: auto; width: 30%; }
  .pv-hero__asset--primary { bottom: 0; left: 2%; width: 82%; }
  .pv-lines__grid { grid-template-columns: 1fr; }
  .pv-line-card { min-height: 285px; }
  .pv-line-card h3 { font-size: 1.9rem; }
  .pv-line-card p { font-size: 13px; }
  .pv-heart-doodle { right: 0; top: -30px; }
  .pv-products { display: flex; margin-inline: calc(var(--pv-gutter) * -1); overflow-x: auto; padding: 4px var(--pv-gutter) 18px; scroll-padding-left: var(--pv-gutter); scroll-snap-type: x mandatory; }
  .pv-product-card { flex: 0 0 min(78vw, 285px); min-height: 390px; scroll-snap-align: start; }
  .pv-product-card__trigger { padding: 14px 14px 18px; }
  .pv-product-card__name { font-size: 15px; }
  .pv-featured__action .pv-button { min-width: 0; width: 100%; }
  .pv-product-dialog {
    border-radius: 0;
    height: 100dvh;
    margin: 0;
    max-height: 100dvh;
    max-width: none;
    width: 100%;
  }
  .pv-product-dialog__surface { border: 0; min-height: 100%; }
  .pv-product-dialog__layout { display: block; min-height: 100%; }
  .pv-product-dialog__close { height: 44px; position: fixed; right: 14px; top: 14px; width: 44px; }
  .pv-product-dialog__visual { min-height: clamp(250px, 37dvh, 330px); padding: 56px 24px 22px; }
  .pv-product-dialog__image { max-height: clamp(205px, 30dvh, 275px); }
  .pv-product-dialog__picture--brinquedo-natural,
  .pv-product-dialog__picture--casinha-passaros,
  .pv-product-dialog__picture--forracao-vivapet-2kg { width: 72%; }
  .pv-product-dialog__content { padding: 26px var(--pv-gutter) 34px; }
  .pv-product-dialog__content h2 { font-size: clamp(2rem, 9.5vw, 2.65rem); padding-right: 0; }
  .pv-product-dialog__summary { font-size: 14px; margin-bottom: 14px; }
  .pv-product-dialog__audience { font-size: 13px; margin-bottom: 18px; }
  .pv-product-dialog__sizes { margin-bottom: 18px; padding-block: 16px; }
  .pv-product-dialog__size-groups { grid-template-columns: 1fr; }
  .pv-product-dialog__benefits { margin-bottom: 22px; }
  .pv-product-dialog__cta { max-width: none; min-height: 50px; width: 100%; }
  .pv-wholesale { margin-top: 62px; padding-block: 66px 72px; }
  .pv-wholesale h2 { font-size: 2.7rem; }
  .pv-wholesale__copy .pv-button { min-width: 0; width: 100%; }
  .pv-wholesale__benefits { gap: 10px; grid-template-columns: 1fr; }
  .pv-wholesale__benefits li { min-height: 84px; padding: 13px 16px; }
  .pv-wholesale__benefits span { flex-basis: 56px; height: 56px; }
  .pv-wholesale__benefits .pv-icon { height: 28px; width: 28px; }
  .pv-wave { height: 55px; }
  .pv-process { padding-top: 75px; }
  .pv-process__steps { gap: 32px; grid-template-columns: 1fr; max-width: 350px; }
  .pv-process__steps::before { border-left: 2px dashed #cbbfb2; border-top: 0; bottom: 16%; left: 59px; right: auto; top: 12%; }
  .pv-has-motion .pv-process__steps::before { transform: scaleY(0); transform-origin: top; }
  .pv-has-motion .pv-process__steps.is-visible::before { transform: scaleY(1); }
  .pv-process__step { gap: 22px; grid-template-columns: 120px 1fr; text-align: left; }
  .pv-process__icon { margin: 0; }
  .pv-process__number { left: -8px; }
  .pv-lead { padding-inline: var(--pv-gutter); }
  .pv-lead__stage { border-radius: var(--pv-radius); display: block; min-height: 0; padding: 20px 14px 14px; }
  .pv-lead__visual { min-height: 270px; }
  .pv-lead__foliage { bottom: -24px; left: 50%; transform: translateX(-50%); width: min(70%, 240px); }
  .pv-lead__bird { bottom: 4px; left: 50%; transform: translateX(-50%); width: min(48%, 170px); }
  .pv-lead__card { margin: 16px 0 0; padding: 26px 18px 20px; }
  .pv-lead__card h2 { font-size: 2.15rem; }
  .pv-form__steps { min-height: 0; }
  .pv-form__fields { grid-template-columns: 1fr; }
  .pv-field--name,
  .pv-field--company-name,
  .pv-form__fields--address > .pv-field { grid-column: 1; }
  .pv-field--wide { grid-column: 1; }
  .pv-form__type-options { gap: 8px; }
  .pv-form__type-option span { min-height: 74px; padding: 11px 12px; }
  .pv-form__actions { align-items: stretch; }
  .pv-form__back { padding-inline: 14px; }
  .pv-form__next,
  .pv-form__submit { gap: 10px; padding-inline: 15px; }
  .pv-footer { padding-top: 32px; }
  .pv-footer__grid { gap: 0; grid-template-columns: 1fr; padding-bottom: 28px; padding-inline: 24px; }
  .pv-footer__brand { padding: 0 0 28px; }
  .pv-footer__brand p { font-size: 13px; line-height: 1.55; margin: 16px 0 0; max-width: none; }
  .pv-footer__cta { background: var(--pv-color-teal); border-color: var(--pv-color-teal); display: flex; margin-top: 22px; max-width: 340px; min-height: 48px; width: 100%; }
  .pv-footer__cta:hover { background: var(--pv-color-teal-dark); border-color: var(--pv-color-teal-dark); box-shadow: 0 10px 24px rgba(3, 91, 87, .2); }
  .pv-footer__desktop-section { display: none; }
  .pv-footer__mobile-sections { display: block; }
  .pv-footer__disclosure,
  .pv-footer__mobile-contact { border-top: 1px solid #eee7e1; }
  .pv-footer__disclosure summary {
    align-items: center;
    color: #655d56;
    cursor: pointer;
    display: flex;
    font-size: 12px;
    font-weight: 750;
    justify-content: space-between;
    letter-spacing: .045em;
    list-style: none;
    min-height: 54px;
    text-transform: uppercase;
  }
  .pv-footer__disclosure summary::-webkit-details-marker { display: none; }
  .pv-footer__disclosure summary .pv-icon { color: var(--pv-color-teal); height: 18px; transition: transform 180ms ease; width: 18px; }
  .pv-footer__disclosure[open] summary .pv-icon { transform: rotate(90deg); }
  .pv-footer__mobile-links { display: flex; flex-direction: column; padding: 0 0 14px; }
  .pv-footer__mobile-links a { align-items: center; color: #504a45; display: flex; font-size: 13px; min-height: 42px; text-decoration: none; }
  .pv-footer__mobile-contact { padding-top: 22px; }
  .pv-footer__mobile-contact h2 { color: #655d56; font-family: var(--pv-font-body); font-size: 12px; letter-spacing: .045em; margin: 0 0 14px; text-transform: uppercase; }
  .pv-footer__contact-links { display: grid; gap: 10px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pv-footer__contact-links a {
    align-items: center;
    background: var(--pv-color-cream);
    border: 1px solid var(--pv-color-border);
    border-radius: 10px;
    color: #8a5b39;
    display: flex;
    font-size: 12px;
    gap: 8px;
    min-height: 48px;
    padding: 10px 12px;
    text-decoration: none;
  }
  .pv-footer__contact-links a:last-child { grid-column: 1 / -1; }
  .pv-footer__contact-links .pv-icon { color: var(--pv-color-teal); flex: 0 0 18px; height: 18px; width: 18px; }
  .pv-footer__disclosure summary:focus-visible,
  .pv-footer__mobile-links a:focus-visible,
  .pv-footer__contact-links a:focus-visible { outline: 3px solid #f2a269; outline-offset: 2px; }
  .pv-footer__bar .pv-container { justify-content: center; padding: 16px 24px; }
  .pv-footer__copyright-desktop,
  .pv-footer__legal-desktop { display: none; }
  .pv-footer__mobile-meta { align-items: center; display: flex; font-size: clamp(9px, 2.6vw, 10px); gap: 7px; justify-content: center; white-space: nowrap; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pv-home-page.pv-home-page *,
  .pv-home-page.pv-home-page *::before,
  .pv-home-page.pv-home-page *::after { animation: none; scroll-behavior: auto; transition: none; }
  .pv-home-page.pv-home-page .pv-reveal { opacity: 1; transform: none; }
  .pv-home-page.pv-home-page .pv-form[data-pv-wizard-ready] .pv-form__step:not([hidden]) { animation: none; }
  .pv-home-page.pv-home-page .pv-form__progress-track span,
  .pv-home-page.pv-home-page .pv-form__type-option span { transition: none; }
}
