@font-face {
  font-family: "Blessy Sections Gazpacho";
  src: url("./assets/gazpacho-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Blessy Sections Bricolage";
  src: url("./assets/bricolage-grotesque.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

:is(.pdp-body, .site-footer, .ing-modal) {
  /* Coluna única fluida no mobile (gutter ~20-22px); teto de desktop em 1200px
     (o Figma novo usa 1200 de conteúdo útil numa página de 1450). */
  --content-max: 720px;
  --gutter: 20px;
  --desktop-max: 1200px;
  --desktop-gutter: 24px;

  /* Verdes institucionais */
  --green: #3e6858;
  --deep-green: #20522e;
  --review-green: #245835;

  /* Paleta do redesign (Figma jul/2026) */
  --mint-bg: #f6fff3;
  --mint-bg-alt: #f7fff4;
  --off-white: #fcfcfc;
  --mint-strong: #d8fec8;
  --lime-line: #cdec89;
  --lime-soft: #dcffce;
  --tag-green: #a3d390;
  --cream-card: #ffe8c2;
  --star-gold: #ffb237;
  --badge-outer: #e8ffdf;
  --badge-inner: #c8f9b4;
  --tab-muted: #9fa3a0;
  --card-line: #e1e1e1;
  --panel-line: #e9e9e9;
  --divider-gray: #b5b5b5;
  --faq-bg: #f7f7f7;
  --faq-cat: #666666;
  --faq-num: #bdbdbd;
  --faq-text: #7b7777;
  --carousel-circle: #f1f1f1;
  --dot-muted: #d9d9d9;

  --system-font: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body-font: "Blessy Sections Bricolage", "Inter", system-ui, sans-serif;
  --display-font: "Blessy Sections Gazpacho", Georgia, serif;
}

:where(.pdp-body, .site-footer, .ing-modal),
:where(.pdp-body, .site-footer, .ing-modal) *,
:where(.pdp-body, .site-footer, .ing-modal) *::before,
:where(.pdp-body, .site-footer, .ing-modal) *::after {
  box-sizing: border-box;
}

:where(.pdp-body, .site-footer, .ing-modal) {
  color: var(--deep-green);
  font-family: var(--body-font);
}

html,
body {
  background: #1d6b4d;
}

.launch-maracuja,
.pdp-body {
  background: #ffffff;
}

:where(.pdp-body, .site-footer, .ing-modal) :where(img) {
  display: block;
  max-width: 100%;
}

:where(.pdp-body, .site-footer, .ing-modal) :where(figure) {
  margin: 0;
}

:where(.pdp-body, .site-footer, .ing-modal) :where(h1, h2, h3, h4, p, ul, ol) {
  margin: 0;
}

:where(.pdp-body, .site-footer, .ing-modal) :where(ul, ol) {
  padding: 0;
  list-style: none;
}

:where(.pdp-body, .site-footer, .ing-modal) :where(button, a) {
  font: inherit;
}

:where(.pdp-body, .site-footer, .ing-modal) :where(button) {
  border: 0;
  cursor: pointer;
  background: none;
  padding: 0;
}

/* ===========================================================================
   ESTRUTURA (mobile-first)
   - Cada filho direto de .pdp é uma faixa full-bleed (fundo até a borda).
   - O conteúdo reflui; nada escala como imagem.
   =========================================================================== */
.pdp {
  width: 100%;
  margin: 0 auto;
}

.pdp > * {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 48px var(--gutter);
}

.pdp > * > * {
  width: 100%;
}

@media (min-width: 1024px) {
  .pdp > * > * {
    max-width: var(--desktop-max);
  }
}

/* Título padrão de seção (Gazpacho, verde escuro) */
.pdp-section-title {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.36;
  color: var(--deep-green);
  text-align: center;
}

@media (min-width: 1024px) {
  .pdp-section-title {
    font-size: 40px;
  }
}

/* Tracks de carrossel: scroll horizontal sem barra */
.pdp-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.pdp-track::-webkit-scrollbar {
  display: none;
}

.pdp-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.pdp-track > * {
  scroll-snap-align: start;
}

/* Botão play sobre pôsteres de vídeo */
.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease;
}

.video-play img {
  width: 100%;
  height: auto;
}

.video-play:hover {
  transform: scale(1.06);
}

/* Controles de carrossel injetados pelo JS (setas circulares + dots) */
.cards-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.cards-arrows {
  display: flex;
  gap: 7px;
}

.cards-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--carousel-circle);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-green);
  transition: transform 150ms ease;
}

.cards-arrow svg {
  width: 16px;
  height: 14px;
  display: block;
}

.cards-arrow:disabled {
  color: rgb(0 0 0 / 17%);
  cursor: default;
}

.cards-arrow:not(:disabled):hover {
  transform: translateY(-1px);
}

.cards-dots {
  display: flex;
  gap: 7px;
}

.cards-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dot-muted);
  transition: background 150ms ease;
}

.cards-dot.is-active {
  background: var(--deep-green);
}

/* ===========================================================================
   1. NUTRIS — recomendado por nutricionistas e musas do wellness
   =========================================================================== */
.nutris-section {
  background: var(--off-white);
  padding: 22px 0 26px;
}

.nutris-head h2 {
  max-width: 330px;
  margin: 0 auto;
}

.nutris-carousel {
  position: relative;
  margin-top: 34px;
}

.nutris-track {
  gap: 20px;
  padding: 2px var(--gutter) 6px;
}

.nutri-card {
  flex: 0 0 300px;
  background: #ffffff;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}

.nutri-media {
  position: relative;
}

.nutri-media > img {
  width: 100%;
  height: auto;
  aspect-ratio: 300 / 295;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 15px 15px 0 0;
}

.nutri-media .video-play {
  width: 75px;
  height: 71px;
}

.nutri-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #000000;
  font-size: 16px;
  line-height: 1.36;
}

.nutri-id {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nutri-avatar {
  width: 61px;
  height: 61px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}

.nutri-handle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #000000;
  text-decoration: none;
}

.nutri-handle img {
  width: 19px;
  height: 19px;
}

.nutri-quote {
  flex: 1;
}

.nutri-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nutri-rating strong {
  font-size: 18px;
}

.nutri-sign {
  border-top: 1px solid #000000;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nutri-sign strong {
  font-size: 18px;
}

.nutri-sign span {
  font-size: 14px;
}

/* nutris: sem dots; setas só no desktop */
.nutris-carousel .cards-dots {
  display: none;
}

.nutris-carousel .cards-controls {
  display: none;
}

@media (min-width: 1024px) {
  .nutris-section {
    padding: 33px 0 41px;
  }

  .nutris-head {
    max-width: var(--desktop-max);
    padding-inline: var(--desktop-gutter);
    margin-inline: auto;
  }

  .nutris-head h2 {
    max-width: none;
    margin: 0;
    text-align: left;
    /* respiro pras setas absolutas à direita */
    padding-right: 130px;
  }

  .nutris-carousel {
    margin-top: 46px;
    max-width: var(--desktop-max);
    margin-inline: auto;
  }

  .nutris-carousel .cards-controls {
    display: flex;
    position: absolute;
    top: -96px;
    right: var(--desktop-gutter);
    width: auto;
  }

  .nutris-carousel .cards-arrow {
    width: 50px;
    height: 50px;
    background: #ffffff;
  }

  .nutris-track {
    gap: 50px;
    padding: 0 var(--desktop-gutter);
    scroll-padding-inline: var(--desktop-gutter);
  }

  .nutri-card {
    flex: 0 0 calc(50% - 25px - var(--desktop-gutter));
    flex-direction: row-reverse;
    gap: 30px;
    background: transparent;
    border-radius: 0;
    align-items: flex-start;
  }

  .nutri-media {
    flex: 0 0 290px;
  }

  .nutri-media > img {
    aspect-ratio: 290 / 419;
    border-radius: 15px;
  }

  .nutri-media .video-play {
    width: 71px;
    height: 71px;
  }

  .nutri-body {
    padding: 0;
    flex: 1;
    min-width: 0;
    font-size: 18px;
  }
}

/* ===========================================================================
   2. BENEFITS — finalmente, um intestino que funciona
   =========================================================================== */
.benefits-section {
  background: var(--mint-bg);
  padding: 18px var(--gutter) 36px;
}

.benefits-intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.benefits-intro p {
  max-width: 300px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.36;
  text-align: center;
}

.benefits-body {
  display: flex;
  flex-direction: column;
  margin-top: 26px;
}

.benefits-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
}

.benefit-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: flex-start;
}

.benefit-card img {
  height: 42px;
  width: auto;
  align-self: flex-start;
}

.benefit-card h3 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.36;
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.36;
}

/* Diagrama circular central */
.benefits-diagram {
  position: relative;
  width: 100%;
  max-width: 365px;
  aspect-ratio: 559 / 523;
  margin: 34px auto;
}

.diagram-ring {
  position: absolute;
  left: 5.55%;
  top: 4.6%;
  width: 86.75%;
  aspect-ratio: 1;
  border: 1px solid var(--lime-line);
  border-radius: 50%;
}

/* Miolo do diagrama: asset único exportado do Figma (gradiente + foto
   mascarada no círculo), servido em 2x para telas retina. */
.diagram-center {
  position: absolute;
  left: 12%;
  top: 11.5%;
  width: 73.9%;
  height: auto;
  pointer-events: none;
}

.diagram-tag {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--lime-line);
  border-radius: 80px;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.36;
  color: var(--tag-green);
  white-space: nowrap;
}

.diagram-tag-fibras { left: 39.7%; top: 0; }
.diagram-tag-antiox { left: 0; top: 47.8%; }
.diagram-tag-adapt  { left: 73%; top: 69.4%; }

.diagram-fruit {
  position: absolute;
  height: auto;
}

.diagram-fruit-morango { left: 8.6%;  top: 9.2%;  width: 16.3%; }
.diagram-fruit-citrico { left: 79.3%; top: 26.8%; width: 16.5%; }
.diagram-fruit-melancia { left: 43.1%; top: 90.4%; width: 14.3%; }

/* Flutuação suave das tags e frutas (desligada em prefers-reduced-motion) */
@keyframes pdp-float {
  from { transform: translateY(-6px); }
  to { transform: translateY(7px); }
}

.diagram-tag,
.diagram-fruit {
  animation: pdp-float 3.8s ease-in-out infinite alternate;
}

.diagram-tag-antiox { animation-duration: 4.4s; animation-delay: -1.6s; }
.diagram-tag-adapt { animation-duration: 4.1s; animation-delay: -0.9s; }
.diagram-fruit-morango { animation-duration: 4.6s; animation-delay: -2.2s; }
.diagram-fruit-citrico { animation-duration: 3.5s; animation-delay: -0.5s; }
.diagram-fruit-melancia { animation-duration: 4.9s; animation-delay: -2.8s; }

@media (min-width: 1024px) {
  .benefits-section {
    padding: 33px var(--desktop-gutter) 36px;
  }

  .benefits-intro p {
    max-width: 700px;
    font-size: 18px;
  }

  .benefits-body {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr) 300px;
    gap: 40px;
    align-items: center;
    width: 100%;
    max-width: 1232px;
    margin: 40px auto 0;
  }

  .benefits-col {
    display: flex;
    flex-direction: column;
    gap: 64px;
    max-width: none;
  }

  .benefit-card {
    padding: 20px 30px;
  }

  .benefit-card h3 {
    font-size: 20px;
  }

  .benefit-card p {
    font-size: 18px;
  }

  .benefits-diagram {
    max-width: 559px;
    margin: 0 auto;
  }

  .benefit-card img {
    height: 46px;
  }

  .diagram-tag {
    font-size: 20px;
    padding: 10px 15px;
  }
}

/* Tablet: layout mobile centrado, diagrama maior */
@media (min-width: 768px) and (max-width: 1023px) {
  .benefits-col {
    max-width: 520px;
  }

  .benefits-diagram {
    max-width: 460px;
  }
}

/* ===========================================================================
   3. TIMELINE — o que acontece com seu corpo
   =========================================================================== */
.timeline-section {
  background: #ffffff;
  padding: 28px 0 32px;
}

.timeline-section .pdp-section-title {
  padding-inline: var(--gutter);
  max-width: 320px;
  margin-inline: auto;
}

.timeline-body {
  position: relative;
  margin-top: 49px;
  padding-left: 74px;
  padding-right: 30px;
  max-width: 480px;
  margin-inline: auto;
}

.timeline-photo {
  display: none;
}

.timeline-rail {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 45px;
  border-radius: 0 25px 25px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
}

/* Gradiente do rail preenchido conforme a rolagem (comentário do design):
   a base fica esmaecida e o fill é revelado de cima pra baixo via --rail-fill. */
.timeline-rail::before,
.timeline-rail-fill {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #ffc3c3 0%, #ffebc4 50%, #dcffce 100%);
}

.timeline-rail::before {
  opacity: 0.25;
}

.timeline-rail-fill {
  clip-path: inset(0 0 calc(100% - var(--rail-fill, 0%)) 0);
}

.timeline-rail img {
  position: relative;
  z-index: 1;
}

.timeline-rail img {
  flex: none;
  height: auto;
}

.rail-icon-1 { width: 30px; }
.rail-icon-2 { width: 26px; }
.rail-icon-3 { width: 28px; }
.rail-icon-4 { width: 36px; }

.timeline-stages {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.timeline-stage h3 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.36;
}

.timeline-stage ul {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.timeline-stage li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.36;
}

.timeline-stage li img {
  width: 13px;
  height: 13px;
  flex: none;
}

@media (min-width: 1024px) {
  .timeline-section {
    padding: 34px var(--desktop-gutter) 36px;
  }

  .timeline-section .pdp-section-title {
    max-width: none;
  }

  .timeline-body {
    display: grid;
    grid-template-columns: minmax(380px, 493px) 90px minmax(340px, 398px);
    gap: 56px;
    justify-content: center;
    align-items: stretch;
    padding: 0;
    max-width: var(--desktop-max);
    margin: 72px auto 0;
  }

  .timeline-photo {
    display: block;
  }

  .timeline-photo img {
    width: 100%;
    height: 100%;
    min-height: 459px;
    object-fit: cover;
    border-radius: 15px;
  }

  .timeline-rail {
    position: relative;
    width: 90px;
    border-radius: 197px;
    padding: 64px 0;
  }

  .rail-icon-1 { width: 46px; }
  .rail-icon-2 { width: 40px; }
  .rail-icon-3 { width: 43px; }
  .rail-icon-4 { width: 55px; }

  .timeline-stages {
    gap: 52px;
    justify-content: center;
  }

  .timeline-stage h3 {
    font-size: 25px;
  }

  .timeline-stage ul {
    gap: 10px;
  }

  .timeline-stage li {
    font-size: 18px;
  }

  .timeline-stage li img {
    width: 18px;
    height: 18px;
  }
}

/* ===========================================================================
   4. STATS — 9 em cada 10 sentem uma melhora na constipação
   =========================================================================== */
.stats-section {
  background: #ffffff;
  padding: 28px 0 0;
}

.stats-section .pdp-section-title {
  padding-inline: var(--gutter);
  max-width: 380px;
  margin-inline: auto;
}

.stats-section .pdp-section-title,
.stats-card,
.stats-lead-card {
  color: var(--deep-green);
}

.stats-card > strong,
.stats-lead-card > strong {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 45px;
  line-height: 1.2;
  display: block;
}

.stats-card p,
.stats-lead-card p {
  font-size: 18px;
  line-height: 1.36;
}

.stats-cream { background: var(--cream-card); }
.stats-green { background: var(--lime-soft); }

.stats-mosaic {
  margin-top: 52px;
  width: 100%;
}

.stats-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile: card líder horizontal + 3 faixas de mosaico */
.stats-lead-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 30px var(--gutter);
}

.stats-lead-card p {
  max-width: 260px;
}

.stats-band {
  display: grid;
}

.stats-band-ab {
  grid-template-columns: 56.5% 43.5%;
  grid-template-rows: 118px 216px;
}

.stats-band-ab .stats-photo-jeans {
  grid-column: 2;
  grid-row: 1 / 3;
}

.stats-band-c {
  grid-template-columns: 46.75% 53.25%;
  grid-template-rows: 224px;
}

.stats-band-d {
  grid-template-columns: 53% 47%;
  grid-template-rows: 231px;
}

.stats-band-d .stats-photo-stack {
  display: grid;
  grid-template-rows: 59.3% 40.7%;
}

/* Crops fechados do Figma nas fotos jeans e dois-potes (só mobile):
   zoom via scale com origin no ponto de interesse, recortado pelo figure. */
@media (max-width: 1023px) {
  .stats-band figure {
    overflow: hidden;
  }

  .stats-photo-jeans,
  .stats-band-c > figure {
    position: relative;
  }

  .stats-photo-jeans img,
  .stats-band-c > figure img {
    position: absolute;
    max-width: none;
    height: auto;
    object-fit: initial;
  }

  .stats-photo-jeans img {
    width: 267%;
    left: -92%;
    top: -34%;
  }

  .stats-band-c > figure img {
    width: 190%;
    left: -53%;
    top: -97%;
  }
}

.stats-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  text-align: left;
}

/* Célula do logo e mosaico desktop escondidos no mobile */
.stats-desktop {
  display: none;
}

@media (max-width: 1023px) {
  .stats-mobile {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .stats-mobile {
    max-width: 560px;
    margin-inline: auto;
  }

  .stats-section {
    padding-bottom: 32px;
  }
}

@media (min-width: 1024px) {
  .stats-section {
    padding: 34px 0 36px;
  }

  .stats-section .pdp-section-title {
    max-width: 760px;
  }

  .stats-mobile {
    display: none;
  }

  .stats-desktop {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: var(--desktop-max);
    margin: 60px auto 0;
  }

  .stats-col {
    display: flex;
    flex-direction: column;
    height: 576px;
  }

  .stats-col > * {
    flex: none;
  }

  .stats-desktop .stats-card {
    flex: 1;
    padding: 28px 30px;
  }

  .stats-desktop figure {
    overflow: hidden;
  }

  .stats-logo-cell {
    height: 217px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
  }

  .stats-logo-cell img {
    width: 168px;
    height: auto;
  }

  .stats-h-144 { height: 144px; }
  .stats-h-217 { height: 217px; }
  .stats-h-239 { height: 239px; }
  .stats-h-336 { height: 336px; }
  .stats-h-358 { height: 359px; }
  .stats-h-149 { height: 149px; }
}

/* ===========================================================================
   5. RITUAL — MUITO gostoso, MUITO simples.
   =========================================================================== */
.ritual-section {
  background: var(--mint-bg-alt);
  padding: 25px 0 24px;
}

.ritual-fruits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.ritual-fruits img {
  height: 28px;
  width: auto;
}

.ritual-fruits .ritual-fruit-melancia {
  transform: rotate(1.5deg);
}

.ritual-section .pdp-section-title {
  font-size: 20px;
  margin-top: 22px;
  padding-inline: var(--gutter);
}

.ritual-band {
  margin-top: 46px;
}

.ritual-track {
  gap: 10px;
  padding-inline: var(--gutter);
}

.ritual-card {
  flex: 0 0 173px;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
}

.ritual-card figure :is(img, video) {
  width: 100%;
  height: auto;
  aspect-ratio: 173 / 151;
  object-fit: cover;
  display: block;
}

.ritual-card-copy {
  background: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.ritual-card-copy h3 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.36;
  color: var(--deep-green);
}

.ritual-card-copy p {
  font-size: 14px;
  line-height: 1.36;
  color: #000000;
}

.ritual-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: calc(100% - var(--gutter) * 2);
  max-width: 360px;
  min-height: 71px;
  margin: 42px auto 0;
  background: var(--deep-green);
  border-radius: 15px;
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.36;
  padding: 10px 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.ritual-cta img {
  width: 19px;
  height: 16px;
}

.ritual-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgb(32 82 46 / 18%);
}

.ritual-cta:active {
  transform: translateY(0);
  filter: brightness(0.96);
}

.ritual-head-band {
  display: contents;
}

@media (min-width: 1024px) {
  .ritual-section {
    padding: 31px 0 29px;
  }

  .ritual-head-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    max-width: var(--desktop-max);
    min-height: 80px;
    margin-inline: auto;
    padding: 10px 30px;
    background: linear-gradient(90deg, #dcffce 0%, #edf3c8 50%, #ffa0a0 100%);
  }

  .ritual-section .pdp-section-title {
    font-size: 30px;
    margin-top: 0;
    padding-inline: 0;
    text-align: left;
    order: -1;
  }

  .ritual-fruits {
    gap: 50px;
  }

  .ritual-fruits img {
    height: 38px;
  }

  .ritual-fruits .ritual-fruit-melancia {
    transform: rotate(-10.9deg);
  }

  .ritual-band {
    margin-top: 0;
    max-width: var(--desktop-max);
    margin-inline: auto;
    width: 100%;
  }

  .ritual-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding-inline: 0;
    overflow: visible;
  }

  .ritual-card {
    flex: none;
  }

  .ritual-card figure :is(img, video) {
    aspect-ratio: 300 / 250;
  }

  .ritual-card-copy {
    min-height: 162px;
    justify-content: center;
    padding: 20px 30px;
  }

  .ritual-card-copy h3 {
    font-size: 18px;
  }

  .ritual-card-copy p {
    font-size: 18px;
  }

  .ritual-cta {
    max-width: 402px;
    min-height: 90px;
    margin-top: 48px;
  }
}
/* ===========================================================================
   6. INGREDIENTES — Blessy tem tudo para quem tem o intestino preso
   =========================================================================== */
.ingredients-section {
  background: #ffffff;
  padding: 28px 0;
}

.ingredients-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-inline: var(--gutter);
}

.ingredients-head .pdp-section-title {
  max-width: 340px;
  margin-inline: auto;
}

.ingredients-head p {
  max-width: 330px;
  margin-inline: auto;
  font-size: 16px;
  line-height: 1.36;
  color: #000000;
  text-align: center;
}

.ingredients-carousel {
  margin-top: 30px;
}

.ingredients-track {
  gap: 0;
  padding-inline: var(--gutter);
}

.ingredient-card {
  flex: 0 0 320px;
  background: #fefefe;
  border-radius: 15px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.ingredient-card-copy {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.ingredient-card h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.36;
  color: var(--deep-green);
}

.ingredient-card p {
  font-size: 18px;
  line-height: 1.36;
  color: #000000;
}

.ingredient-card figure {
  margin-top: auto;
}

.ingredient-card figure img {
  width: 100%;
  height: auto;
}

.ingredients-carousel .cards-controls {
  margin-top: 16px;
  padding-inline: var(--gutter);
}

@media (min-width: 1024px) {
  .ingredients-section {
    padding: 34px 0 33px;
  }

  .ingredients-head {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    max-width: var(--desktop-max);
    margin-inline: auto;
    width: 100%;
    padding-inline: var(--desktop-gutter);
  }

  .ingredients-head .pdp-section-title {
    max-width: 640px;
    margin: 0;
    text-align: left;
  }

  .ingredients-head p {
    max-width: 527px;
    margin: 6px 0 0;
    font-size: 18px;
    text-align: right;
  }

  .ingredients-carousel {
    margin-top: 54px;
    max-width: var(--desktop-max);
    margin-inline: auto;
  }

  .ingredients-track {
    padding-inline: var(--desktop-gutter);
    scroll-padding-inline: var(--desktop-gutter);
  }

  .ingredients-carousel .cards-controls {
    margin-top: 24px;
    padding-inline: var(--desktop-gutter);
  }

  .ingredients-carousel .cards-arrow {
    width: 50px;
    height: 50px;
  }

  .ingredients-carousel .cards-dot {
    width: 14px;
    height: 14px;
  }
}

/* ===========================================================================
   7. REVIEWS — experimente por 30 dias sem risco
   =========================================================================== */
.reviews-section {
  background: var(--mint-bg-alt);
  padding: 20px var(--gutter) 22px;
}

.reviews-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
  row-gap: 11px;
  width: fit-content;
  margin-inline: auto;
}

.reviews-badge {
  width: 87px;
  height: 87px;
  flex: none;
  border-radius: 50%;
  background: var(--badge-outer);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-badge span {
  width: 67px;
  height: 67px;
  border-radius: 50%;
  background: var(--badge-inner);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 38px;
  color: var(--deep-green);
}

.reviews-head h2 .no-wrap {
  white-space: nowrap;
}

.reviews-head h2 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.36;
  color: var(--deep-green);
  max-width: 210px;
}

.reviews-sub {
  grid-column: 1 / -1;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.36;
  text-align: center;
}

.reviews-proof {
  display: none;
}

.reviews-tabs {
  display: flex;
  gap: 13px;
  margin-top: 24px;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  overflow-x: auto;
  scrollbar-width: none;
}

.reviews-tabs::-webkit-scrollbar {
  display: none;
}

.reviews-tab {
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.36;
  color: var(--tab-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 150ms ease, border-color 150ms ease;
}

.reviews-tab.is-active {
  color: var(--deep-green);
  border-bottom-color: var(--deep-green);
}

.reviews-panel-wrap {
  margin-top: 20px;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
}

.reviews-panel {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.reviews-panel[hidden] {
  display: none;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--card-line);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.review-card-top > img {
  width: 99px;
  height: 15px;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--review-green);
}

.review-verified img {
  width: 19px;
  height: 18px;
}

.review-card > p {
  font-size: 14px;
  line-height: 1.39;
  color: #000000;
}

.review-card footer {
  border-top: 1px solid var(--divider-gray);
  padding-top: 18px;
}

.review-card footer strong {
  font-size: 16px;
  color: var(--review-green);
}

@media (min-width: 1024px) {
  .reviews-section {
    padding: 24px var(--desktop-gutter) 25px;
  }

  .reviews-head {
    grid-template-columns: 133px minmax(0, 1fr) auto;
    column-gap: 19px;
    row-gap: 4px;
    width: 100%;
    max-width: var(--desktop-max);
  }

  .reviews-badge {
    width: 133px;
    height: 133px;
    grid-row: 1 / 3;
  }

  .reviews-badge span {
    width: 103px;
    height: 103px;
    font-size: 50px;
  }

  .reviews-head h2 {
    font-size: 30px;
    max-width: none;
    align-self: end;
  }

  .reviews-sub {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    text-align: left;
    font-size: 18px;
  }

  .reviews-proof {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .reviews-proof {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    font-size: 18px;
    color: var(--deep-green);
  }

  .reviews-proof .reviews-proof-stars {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .reviews-proof img {
    width: 99px;
    height: 15px;
  }

  .reviews-panel-box {
    width: 100%;
    max-width: var(--desktop-max);
    margin: 36px auto 0;
    background: #ffffff;
    border: 1px solid var(--panel-line);
    border-radius: 15px;
    box-shadow: 0 4px 32.8px -20px rgb(0 0 0 / 25%);
    display: grid;
    grid-template-columns: 220px 2px minmax(0, 1fr);
    gap: 0 26px;
    padding: 42px 0 42px 37px;
    overflow: hidden;
  }

  .reviews-tabs {
    flex-direction: column;
    gap: 13px;
    margin-top: 30px;
    max-width: none;
    overflow: visible;
    align-self: start;
  }

  .reviews-tab {
    text-align: left;
    padding: 16px 10px;
    border-bottom: 0;
    border-right: 4px solid transparent;
  }

  .reviews-tab.is-active {
    border-bottom: 0;
    border-right-color: var(--deep-green);
  }

  .reviews-divider {
    background: var(--card-line);
    margin-block: 30px;
  }

  .reviews-panel-wrap {
    margin-top: 0;
    max-width: none;
    min-width: 0;
  }

  .reviews-panel {
    flex-direction: row;
    gap: 19px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-right: 24px;
    -webkit-overflow-scrolling: touch;
  }

  .reviews-panel::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    flex: 0 0 365px;
    justify-content: center;
    padding: 20px 30px;
  }

  .review-card > p {
    font-size: 16px;
  }
}

/* Tablet: painel simples empilhado */
@media (max-width: 1023px) {
  .reviews-panel-box {
    display: contents;
  }

  .reviews-divider {
    display: none;
  }
}

/* ===========================================================================
   8. SCOOP — o que tem em 1 scoop de blessy
   =========================================================================== */
.scoop-section {
  background: #ffffff;
  padding: 28px var(--gutter);
}

.scoop-inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 420px;
  margin-inline: auto;
}

.scoop-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
  color: var(--green);
}

.scoop-copy .pdp-section-title {
  color: var(--green);
  line-height: 1.24;
}

.scoop-copy p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.24;
}

.scoop-copy p strong {
  font-weight: 700;
}

.ingredients-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 317px;
  min-height: 57px;
  background: var(--deep-green);
  border-radius: 15px;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.24;
  padding: 10px 20px;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.ingredients-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgb(32 82 46 / 18%);
}

.ingredients-button:active {
  transform: translateY(0);
  filter: brightness(0.96);
}

.nutrition-table {
  width: 100%;
}

.nutrition-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 41px;
  padding: 5px 10px;
  border: 1px solid var(--deep-green);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.24;
  color: var(--deep-green);
}

.nutrition-row + .nutrition-row {
  margin-top: -1px;
}

.nutrition-row [role="cell"]:last-child,
.nutrition-row [role="columnheader"]:last-child {
  text-align: right;
}

.nutrition-head [role="columnheader"]:first-child {
  font-weight: 700;
}

.nutrition-head [role="columnheader"]:last-child {
  font-weight: 600;
  color: var(--green);
}

.scoop-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 360 / 200;
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: 15px;
}

@media (min-width: 1024px) {
  .scoop-section {
    padding: 34px var(--desktop-gutter);
  }

  .scoop-inner {
    display: grid;
    grid-template-columns: minmax(0, 322px) minmax(360px, 467px) minmax(0, 286px);
    justify-content: space-between;
    align-items: center;
    gap: clamp(24px, 3vw, 38px);
    max-width: var(--desktop-max);
  }

  .scoop-copy {
    align-items: flex-start;
    gap: 30px;
    text-align: left;
  }

  .scoop-copy .pdp-section-title {
    font-size: 30px;
  }

  .nutrition-row {
    font-size: 16px;
  }

  .scoop-photo img {
    aspect-ratio: 286 / 280;
    border-radius: 15px;
  }
}

/* ===========================================================================
   9. VIDEOS — com a palavra, a opinião sincera de quem toma blessy
   =========================================================================== */
.videos-section {
  background: #ffffff;
  padding: 28px 0;
}

.videos-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding-inline: var(--gutter);
}

.videos-head .pdp-section-title {
  max-width: 380px;
}

.videos-head p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.36;
  text-align: center;
}

.videos-widget {
  width: 100%;
  margin-top: 33px;
}

.videos-widget > script {
  display: none;
}

@media (min-width: 1024px) {
  .videos-section {
    padding: 34px var(--desktop-gutter) 36px;
  }

  .videos-head .pdp-section-title {
    font-size: 30px;
    max-width: none;
  }

  .videos-head p {
    font-size: 18px;
  }

  .videos-widget {
    margin: 62px auto 0;
    max-width: var(--desktop-max);
  }

  .videos-widget blessy-stories {
    display: block;
    width: min(100%, var(--desktop-max));
    margin-inline: auto;
  }
}

/* ===========================================================================
   10. FAQ — Perguntas Frequentes
   =========================================================================== */
.faqs-section {
  background: #ffffff;
  padding: 28px var(--gutter) 36px;
}

.faqs-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.faqs-head .pdp-section-title {
  font-size: 25px;
}

.faqs-head p {
  font-size: 16px;
  line-height: 1.36;
  max-width: 340px;
  margin-inline: auto;
}

.faqs-body {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 560px;
  margin-inline: auto;
  width: 100%;
}

.faqs-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faqs-group > h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.36;
  color: var(--faq-cat);
}

.faqs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faqs-item {
  background: var(--faq-bg);
  border-radius: 15px;
}

.faqs-item-trigger {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 15px 20px;
  text-align: left;
  min-height: 60px;
}

.faqs-item-num {
  font-size: 18px;
  color: var(--faq-num);
  flex: none;
}

.faqs-item-q {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.36;
  color: var(--faq-text);
}

.faqs-item-plus {
  flex: none;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  color: var(--faq-text);
  transition: transform 200ms ease;
}

.faqs-item.is-open .faqs-item-plus {
  transform: rotate(45deg);
}

.faqs-item-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 250ms ease;
}

.faqs-item.is-open .faqs-item-a {
  grid-template-rows: 1fr;
}

.faqs-item-a > div {
  overflow: hidden;
}

.faqs-item-a p {
  padding: 0 20px 18px 62px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--faq-text);
}

/* Card "Precisa de ajuda?" */
.faqs-help {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 360px;
}

.faqs-help figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 297 / 275;
  object-fit: cover;
  border-radius: 15px;
}

.faqs-help-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 5px;
}

.faqs-help-copy span {
  font-size: 16px;
  color: #5c5c5c;
}

.faqs-help-copy strong {
  font-size: 18px;
  font-weight: 500;
  color: var(--deep-green);
}

.faqs-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 197px;
  min-height: 60px;
  background: var(--lime-line);
  border-radius: 15px;
  font-size: 18px;
  font-weight: 500;
  color: var(--deep-green);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.faqs-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgb(32 82 46 / 14%);
}

.faqs-whatsapp img {
  width: 24px;
  height: 24px;
}

@media (min-width: 1024px) {
  .faqs-section {
    padding: 33px var(--desktop-gutter) 41px;
  }

  .faqs-inner {
    max-width: 1234px;
    margin-inline: auto;
    width: 100%;
  }

  .faqs-head {
    text-align: left;
  }

  .faqs-head .pdp-section-title {
    font-size: 30px;
    text-align: left;
  }

  .faqs-head p {
    font-size: 18px;
    max-width: 640px;
    margin-inline: 0;
  }

  .faqs-columns {
    display: grid;
    grid-template-columns: 297px minmax(0, 695px);
    justify-content: space-between;
    gap: 56px;
    margin-top: 56px;
    align-items: start;
  }

  .faqs-help {
    position: sticky;
    top: 24px;
    order: -1;
  }

  .faqs-body {
    margin-top: 0;
    max-width: none;
  }

  .faqs-group > h3 {
    font-size: 18px;
  }

  .faqs-item-trigger {
    gap: 30px;
  }

  .faqs-item-num {
    font-size: 20px;
  }

  .faqs-item-q {
    font-size: 18px;
  }

  .faqs-item-a p {
    padding-left: 70px;
    font-size: 16px;
  }
}

@media (max-width: 1023px) {
  .faqs-columns {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .faqs-help {
    order: 2;
    margin-inline: auto;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .faqs-help-copy {
    padding-left: 0;
    align-items: center;
  }
}

/* ===========================================================================
   Movimento reduzido
   =========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .pdp-body,
  .pdp-body *,
  .pdp-body *::before,
  .pdp-body *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ===========================================================================
   FOOTER + MODAL DE INGREDIENTES (transplantados do sections.css legado)
   =========================================================================== */
.site-footer {
  background: #1d6b4d;
  color: #effFe9;
  font-family: var(--system-font);
}

.footer-inner {
  width: 100%;
  max-width: var(--desktop-max);
  margin: 0 auto;
  padding: 56px var(--gutter) 40px;
}

/* Topo: logo + colunas de links. Mobile = empilhado e centralizado. */
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo img {
  width: 200px;
  height: auto;
}

.footer-col,
.footer-col-side,
.footer-col-side ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col,
.footer-col-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-col-side ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-col a {
  color: #effee9;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 150ms ease;
}

.footer-col a:hover {
  opacity: 0.72;
}

/* Redes sociais (glifos cream) */
.footer-social {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-social a {
  display: inline-flex;
  color: #effee9;
  transition: opacity 150ms ease;
}

.footer-social a:hover {
  opacity: 0.72;
}

.footer-social svg {
  width: 22px;
  height: 22px;
}

/* Base: copyright + pagamentos + reclame aqui. Mobile = empilhado centralizado. */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  margin-top: 44px;
  text-align: center;
}

.footer-copy {
  margin: 0;
  font-size: 15px;
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.footer-payments img {
  height: 26px;
  width: auto;
  border-radius: 4px;
}

/* Selo Reclame Aqui — versão estática limpa (sem o script bugado da produção). */
.footer-ra {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 96px;
  height: 96px;
  padding: 9px;
  border-radius: 8px;
  background: #ffffff;
  text-decoration: none;
}

.footer-ra-stamp {
  width: 40px;
  height: 40px;
}

.footer-ra-label {
  color: #2a8a4a;
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 13px;
}

.footer-ra-logo {
  width: 78px;
  height: auto;
}

/* Wrappers novos do topo (marca = logo + social / links = 3 colunas).
   Mobile = empilhado e centralizado; o desktop (abaixo) vira grid. */
.footer-brand,
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media (min-width: 1024px) {
  /* Gap horizontal único (DRY) pro grid pai E pro subgrid de links, pra que
     as colunas nunca saiam de sincronia com as trilhas do grid pai. */
  .footer-top { --footer-col-gap: 48px; }

  .footer-inner {
    padding: 72px var(--desktop-gutter) 40px;
  }

  /* GRID PRINCIPAL: trilha de MARCA (flexível) + 3 trilhas de links iguais.
     O antigo margin-right:auto sumiu — o espaço livre virou a trilha de marca,
     distribuída pelo grid em vez de jogada num único vão. */
  .footer-top {
    display: grid;
    grid-template-columns: minmax(220px, 1.1fr) repeat(3, minmax(0, 1fr));
    align-items: start;
    column-gap: var(--footer-col-gap);
    row-gap: 0;
    text-align: left;
  }

  /* Bloco de marca: logo + sociais empilhados, alinhados à esquerda e ao topo. */
  .footer-brand {
    align-items: flex-start;
    gap: 28px;
  }
  .footer-logo { margin: 0; }          /* mata o margin-right:auto -> fim do vão */
  .footer-logo img { width: 220px; }
  .footer-social {
    justify-content: flex-start;
    gap: 20px;
  }

  /* SUBGRID DE LINKS: ocupa as 3 trilhas de links e repete o MESMO gap, então
     as 3 colunas coincidem exatamente com as trilhas 2/3/4 do grid pai. */
  .footer-links {
    display: grid;
    grid-column: 2 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: var(--footer-col-gap);
    row-gap: 0;
    align-items: start;
  }

  /* Colunas: topo alinhado, ritmo vertical uniforme (sobrescreve o center mobile). */
  .footer-col,
  .footer-col-side {
    align-items: flex-start;
    gap: 18px;
  }
  .footer-col a {
    font-size: 15px;
    line-height: 1.4;
  }

  /* LINHA DE BAIXO: copyright (esq) | pagamentos (centro) | selo RA (dir).
     Grid 1fr auto 1fr + align-items:center centra o copyright verticalmente
     no selo RA de 96px; border-top dá uma base reta alinhada ao container. */
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 24px;
    row-gap: 0;
    margin-top: 64px;
    padding-top: 28px;
    border-top: 1px solid rgba(239, 254, 233, 0.14);
    text-align: left;
  }
  .footer-copy {
    justify-self: start;
    font-size: 14px;
    opacity: 0.9;
  }
  .footer-payments {
    justify-self: center;
    flex-wrap: nowrap;
  }
  .footer-ra {
    justify-self: end;
  }
}

/* ===========================================================================
   AJUSTES DE ESPAÇAMENTO — MOBILE (< 1024px)
   Reduz os gaps entre as primeiras seções e afina a seção de comparação.
   O desktop mantém os valores das regras-base.
   =========================================================================== */
@media (max-width: 1023px) {
  /* Gap 1ª -> 2ª seção (benefícios -> deficiência) menor. */
  .benefits-section {
    padding-bottom: 44px;
  }
  .deficiency-section {
    padding-top: 40px;
    /* Gap 2ª -> 3ª seção (deficiência -> testada) menor. */
    padding-bottom: 44px;
  }
  .tested-section {
    padding-top: 48px;
  }

  /* Comparação: menos respiro no topo e menos espaço até a imagem da tabela. */
  .comparison-section {
    padding-top: 28px;
    padding-bottom: 12px;
  }
  /* Descrição um pouco menor (o título fica igual). */
  .comparison-section p {
    font-size: 15px;
  }

  .comparison-image {
    margin-top: 10px;
    padding-bottom: 24px;
  }

  .comparison-image img {
    height: auto;
    object-fit: contain;
  }

  .testimonial-section {
    padding: 0;
  }

  .testimonial-photo {
    width: 100%;
    max-width: none;
    aspect-ratio: 448 / 400;
    border-radius: 0;
  }

  .testimonial-photo img {
    object-position: 50% 18%;
  }

  .testimonial-copy {
    width: 100%;
    padding-bottom: 48px;
    border-radius: 0;
  }
}

/* ===========================================================================
   INGREDIENTES — card mobile estilo "foto com legenda flutuante"
   A foto preenche o card e a legenda verde flutua no rodapé, sobre a foto.
   aspect-ratio fixo => todos os cards com a MESMA altura, sempre.
   =========================================================================== */
@media (max-width: 1023px) {
  .ingredients-track .antioxidants-card {
    position: relative;
    aspect-ratio: 312 / 416;
    padding: 0;
    background: #ffffff;
    border: 1.5px solid #d4ecca;
    border-radius: 20px;
    overflow: hidden;
  }

  /* Foto preenche o card, com uma moldura branca de 8px ao redor. */
  .ingredients-track .antioxidants-card figure {
    position: absolute;
    inset: 8px;
    width: auto;
    margin: 0;
    aspect-ratio: auto;
    border-radius: 13px;
    overflow: hidden;
  }
  .ingredients-track .antioxidants-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Legenda verde flutuando no rodapé, sobreposta à foto. */
  .ingredients-track .antioxidants-card > div {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    padding: 16px 18px 18px;
    border-radius: 16px;
    background: var(--mint-strong);
    box-shadow: 0 8px 22px rgba(28, 60, 33, 0.12);
  }
  .ingredients-track .antioxidants-card h3 {
    font-size: 18px;
    line-height: 1.2;
  }
  .ingredients-track .antioxidants-card h3::after {
    margin: 8px 0 9px;
  }
  .ingredients-track .antioxidants-card p {
    font-size: 14px;
    line-height: 1.4;
  }
}

/* ===========================================================================
   MODAL — Tabela nutricional + lista completa de ingredientes
   Abre no clique de "ver lista completa de ingredientes" (.ingredients-button).
   Conteúdo replicado da página de produção (imagem da tabela + accordion).
   =========================================================================== */
.ing-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 0s linear 220ms;
}
.ing-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 220ms ease;
}

.ing-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 40, 22, 0.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.ing-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  max-height: 88vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 22px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  transform: translateY(12px) scale(0.98);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  font-family: var(--system-font);
}
.ing-modal.is-open .ing-modal__panel {
  transform: none;
}

.ing-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f0f4ee;
  color: var(--green);
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}
.ing-modal__close:hover {
  background: var(--green);
  color: #ffffff;
}
.ing-modal__close svg {
  width: 18px;
  height: 18px;
}

.ing-modal__table {
  margin: 6px 0 0;
}
.ing-modal__table img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Accordion "Ingredientes" (expande via grid 0fr -> 1fr, sem medir altura no JS). */
.ing-accordion {
  margin-top: 18px;
  border-top: 1px solid #e6ddcd;
}
.ing-accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 16px 2px;
  border: 0;
  background: transparent;
  color: var(--deep-green);
  font-family: var(--display-font);
  font-size: 19px;
  text-align: left;
  cursor: pointer;
}
.ing-accordion__caret {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--green);
  transition: transform 240ms ease;
}
.ing-accordion.is-open .ing-accordion__caret {
  transform: rotate(180deg);
}
.ing-accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms ease;
}
.ing-accordion.is-open .ing-accordion__content {
  grid-template-rows: 1fr;
}
.ing-accordion__inner {
  overflow: hidden;
  min-height: 0;
}
.ing-accordion__inner p {
  margin: 0;
  padding: 2px 2px 18px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #4a5550;
}
.ing-accordion__inner strong {
  color: var(--deep-green);
}

body.ing-modal-open {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .ing-modal__panel {
    max-width: 560px;
    padding: 28px;
  }
  .ing-accordion__header {
    font-size: 21px;
  }
  .ing-accordion__inner p {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ing-modal,
  .ing-modal__panel,
  .ing-accordion__content,
  .ing-accordion__caret {
    transition: none;
  }
}
