.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  background: transparent;
  border: 0;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.benefits > .section-heading {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.benefits > .results-cta {
  display: flex;
  width: max-content;
  margin: 32px auto 0;
}

.process {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  border: 0;
  background-color: #f5ebe5;
  box-shadow: 0 0 0 100vmax #f5ebe5;
  clip-path: inset(0 -100vmax);
}

@media (min-width: 1081px) {
  .process {
    padding-left: 11vw;
    padding-right: 11vw;
    gap: clamp(36px, 5vw, 80px);
  }
}

.button,
.results-cta {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  overflow: hidden;
  margin-top: 8px;
  padding: 14px 21px;
  border-radius: 999px;
  color: var(--wine);
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(115deg, #d7a93f, #f2da5e 35%, #fff0a2 50%, #f2da5e 65%, #c7932f);
  background-size: 220% 100%;
  box-shadow: 0 10px 25px rgba(242, 218, 94, .2);
  animation: results-gradient 4s ease-in-out infinite;
  transition: transform .25s ease, box-shadow .25s ease;
}

.button::after,
.results-cta::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: -30%;
  bottom: -30%;
  left: -30%;
  width: 18%;
  background: rgba(255, 255, 255, .72);
  transform: skewX(-22deg);
  animation: results-sweep 3s ease-in-out infinite;
}

.button:hover,
.results-cta:hover {
  background-color: transparent;
  background-image: linear-gradient(115deg, #d7a93f, #f2da5e 35%, #fff0a2 50%, #f2da5e 65%, #c7932f);
  background-size: 220% 100%;
  animation-play-state: running;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(242, 218, 94, .34);
}

.button-light {
  color: var(--wine);
}

@keyframes results-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes results-sweep {
  0%, 58% { left: -30%; opacity: 0; }
  64% { opacity: 1; }
  82%, 100% { left: 120%; opacity: 0; }
}

.statement {
  padding-top: 75px;
  padding-bottom: 75px;
}

/* Tipografia mais compacta para manter a hierarquia leve em todas as telas. */
.hero h1 {
  font-size: clamp(32px, 3.2vw, 48px);
}

.statement h2,
.section-heading h2,
.process h2,
.testimonials h2,
.about h2,
.cta h2 {
  font-size: clamp(24px, 2.4vw, 38px);
}

.benefit-grid h3 {
  font-size: 17px;
}

.steps h3 {
  font-size: 16px;
  line-height: 1.085;
  font-weight: 400;
}

@media (min-width: 1081px) {
  .hero-copy {
    max-width: 760px;
  }
}

/* O método passa a ter uma coluna de introdução e uma linha de etapas. */
.process {
  display: block;
}

.process-intro {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.process-intro > p:last-child {
  max-width: none;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  border-top: 0;
}

.steps article {
  display: block;
  padding: 40px;
  border: 1px solid #d9bbb0;
}

.steps article > span {
  margin-bottom: 16px;
}

.benefit-grid article {
  min-height: 240px;
  padding: 30px 16px 32px;
  text-align: center;
  border: 1px solid rgba(242, 218, 94, .34);
  border-radius: 16px;
  background-color: #f5ebe5;
  box-shadow: 0 10px 25px rgba(36, 3, 20, .12);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.site-header {
  background: rgba(74, 15, 42, .7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--wine);
}

.brand-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-logo-header {
  width: clamp(190px, 17vw, 270px);
}

.brand-logo-footer {
  width: min(260px, 45vw);
}

.site-header .brand,
.site-header .nav,
.site-header .nav a,
.site-header.is-sticky .brand,
.site-header.is-sticky .nav,
.site-header.is-sticky .nav a,
.site-header.is-sticky .brand small {
  color: #fff;
}

.site-header .button-small,
.site-header.is-sticky .button-small {
  background: linear-gradient(115deg, #d7a93f, #f2da5e 35%, #fff0a2 50%, #f2da5e 65%, #c7932f);
  background-size: 220% 100%;
  color: var(--wine);
}

.site-header::after {
  content: '';
  position: absolute;
  left: 5.5vw;
  right: 5.5vw;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 18%, #f2da5e 50%, var(--gold) 82%, transparent);
  opacity: .85;
}

.nav {
  font-size: 16px;
  font-weight: 700;
}

.site-header.is-sticky {
  background: rgba(74, 15, 42, .7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header.is-sticky::after {
  opacity: .95;
}

@media (min-width: 1081px) {
  .site-header .nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .site-header .button-small,
  .site-header.is-sticky .button-small {
    background: linear-gradient(115deg, #d7a93f, #f2da5e 35%, #fff0a2 50%, #f2da5e 65%, #c7932f);
    background-size: 220% 100%;
    color: var(--wine);
  }
}

@media (max-width: 1080px) {
  .site-header .button-small {
    display: inline-flex;
    padding: 9px 13px;
    font-size: 11px;
    gap: 6px;
  }

  .site-header::after {
    left: 6vw;
    right: 6vw;
  }
}

.benefit-grid article:nth-child(1) { background-image: url('assets/card-transformacaov2.png'); }
.benefit-grid article:nth-child(2) { background-image: url('assets/card-autonomiav2.png'); }
.benefit-grid article:nth-child(3) { background-image: url('assets/card-resultadosv2.png'); }
.benefit-grid article:nth-child(4) { background-image: url('assets/card-massav2.png'); }
.benefit-grid article:nth-child(5) { background-image: url('assets/card-educacaov2.png'); }
.benefit-grid article:nth-child(6) { background-image: url('assets/card-treinov2.jpg'); }

.benefit-grid article {
  background-size: cover;
  background-position: center bottom;
}

@media (min-width: 1081px) {
  .benefit-grid article {
    background-position: center center;
  }
}

.site-header .nav a:hover,
.site-header.is-sticky .nav a:hover,
.site-header .nav a:focus-visible {
  color: transparent;
  background-image: linear-gradient(115deg, #d7a93f, #f2da5e 35%, #fff0a2 50%, #f2da5e 65%, #c7932f);
  background-clip: text;
  -webkit-background-clip: text;
}

.benefit-grid article:hover {
  z-index: 1;
  transform: translateY(-8px) scale(1.025);
  background-color: #fffaf8;
  box-shadow: 0 22px 42px rgba(36, 3, 20, .28);
}

.benefit-icon {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 3px auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border: 0;
  color: var(--wine);
  box-shadow: none;
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.55;
}

.benefit-icon > svg:first-child {
  display: block;
  flex: 0 0 26px;
  margin: 0;
}

.benefit-icon .icon-sparkle { display: none; }

.benefit-grid h3,
.benefit-grid p {
  color: var(--wine);
}

.benefit-grid h3 {
  text-shadow: none;
}

.benefit-grid p {
  color: #69143d;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1080px) {
  .benefit-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1080px) {
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid article { min-height: 0; }
}

.hero,
.about {
  background-position: center top;
}

/* V2: fotos atualizadas da nutricionista */
.hero {
  background-image: url('assets/herov2.png');
  background-position: center top;
}

@media (min-width: 1081px) {
  .hero {
    background-size: auto auto;
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: scroll;
  }
}

/* Keep the 1920px content geometry centered on wider screens.
   Section backgrounds still span the entire viewport. */
@media (min-width: 1920px) {
  .section-shell,
  footer {
    padding-left: calc((100% - 1920px) / 2 + 153.6px);
    padding-right: calc((100% - 1920px) / 2 + 153.6px);
  }

  .process {
    padding-left: calc((100% - 1920px) / 2 + 211.2px);
    padding-right: calc((100% - 1920px) / 2 + 211.2px);
  }

  .statement {
    padding-left: 153.6px;
    padding-right: 153.6px;
  }

  .site-header {
    padding-left: calc((100% - 1920px) / 2 + 105.6px);
    padding-right: calc((100% - 1920px) / 2 + 105.6px);
  }

  .site-header::after {
    left: calc((100% - 1920px) / 2 + 105.6px);
    right: calc((100% - 1920px) / 2 + 105.6px);
  }
}

.hero-copy { margin-top: 0; }

.hero h1 .hero-highlight,
h2 .text-highlight {
  color: var(--wine);
  background: linear-gradient(115deg, #d7a93f, #f2da5e 35%, #fff0a2 50%, #f2da5e 65%, #c7932f);
  background-size: 100% calc(100% - 20px);
  background-position: center;
  background-repeat: no-repeat;
  padding: 0 .09em .025em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

@media (max-width: 1080px) {
  .hero h1 .hero-highlight,
  h2 .text-highlight {
    background-size: 100% calc(100% - 10px);
  }
}

.about-copy {
  margin-top: 0;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
  background-image: none;
  background-color: #fffaf8;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: -34px;
  background: url('assets/aboutv2.png') center center / cover no-repeat;
  opacity: .15;
  filter: blur(4px);
  transform: scale(1.04);
}

.about-media,
.about-copy {
  position: relative;
  z-index: 1;
}

.about-media {
  align-self: center;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-media img {
  width: min(100%, 500px);
  height: auto;
  max-height: 620px;
  object-fit: contain;
  object-position: center top;
}

.about-copy {
  margin-left: 0;
  justify-self: end;
  max-width: 510px;
  transform: translateX(-75px);
}

@media (min-width: 1081px) {
  .about {
    grid-template-columns: minmax(0, 500px) minmax(0, 510px);
    justify-content: center;
    gap: clamp(32px, 7vw, 100px);
  }

  .about-media {
    justify-content: flex-end;
  }

  .about-copy {
    justify-self: start;
    transform: none;
    width: 100%;
    container-type: inline-size;
  }

  .about-copy h2 {
    font-size: clamp(28px, 10.5cqw, 54px);
    white-space: nowrap;
  }
}

.statement {
  position: relative;
  isolation: isolate;
}

.statement::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: url('assets/o-que-muda-v2.png');
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: .22;
}

@media (max-width: 1080px) {
  .hero {
    background-image: url('assets/BG-HERO-CELL.png');
    background-position: center top;
    background-size: cover;
  }

  .hero .eyebrow {
    color: var(--wine);
    font-size: 10px;
  }

  .scroll-cue {
    display: none;
  }

  .benefit-grid article {
    background-position: center center;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding-top: 80px;
    padding-bottom: 105px;
    background-position: center top;
  }

  .about::before {
    background-image: url('assets/about-cellv2.png');
    background-size: cover;
    background-position: center top;
  }

  .hero-copy {
    margin-top: 250px;
  }

  .about-copy {
    margin-top: 0;
  }

  .about-media {
    min-height: 0;
    order: 1;
  }

  .about-media img {
    width: min(75%, 315px);
    max-height: none;
  }

  .about-copy {
    order: 2;
  }
}

.reveal-ready .hero-copy > :not(.is-visible),
.reveal-ready .statement > :not(.is-visible),
.reveal-on-scroll:not(.is-visible) {
  opacity: 0;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

footer > *.reveal-on-scroll {
  opacity: 1;
  transform: none;
  filter: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready .hero-copy > *,
  .reveal-ready .statement > *,
  .reveal-on-scroll:not(.is-visible) {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@media (max-width: 1080px) {
  .about {
    grid-template-columns: 1fr;
  }

  .about-media {
    order: 1;
    min-height: 0;
  }

  .about-copy {
    order: 2;
    justify-self: stretch;
    transform: none;
  }
}

.testimonial-slider {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 14px;
  margin-top: 58px;
}

.quote-viewport {
  min-width: 0;
  overflow: hidden;
}

.quote-grid {
  display: flex;
  gap: 22px;
  max-width: none;
  margin: 0;
  transition: transform .45s ease;
  will-change: transform;
}

.quote-grid .testimonial-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
}

.testimonial-card {
  background: #f5ebe5;
  overflow: hidden;
}

.testimonial-card img {
  width: 100%;
  height: auto;
  display: block;
}

.slider-control {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(105, 20, 61, .28);
  border-radius: 50%;
  background: transparent;
  color: var(--wine);
  cursor: pointer;
  font: inherit;
  font-size: 22px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.slider-control:hover {
  background: var(--wine);
  color: #fff;
  transform: scale(1.08);
}

.slider-control:disabled {
  opacity: .35;
  cursor: default;
  transform: none;
}

@media (max-width: 1080px) {
  .testimonial-slider { grid-template-columns: 38px minmax(0, 1fr) 38px; gap: 10px; }
  .quote-grid .testimonial-card { flex-basis: 100%; }
  .slider-control { width: 38px; height: 38px; }
}

/* Breakpoint único: até 1080px o site usa o layout mobile. */
@media (max-width: 1080px) {
  body {
    font-size: 16px;
  }

  .section-shell {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .site-header {
    height: auto;
    padding: 18px 6vw;
  }

  .brand-logo-header {
    width: min(48vw, 220px);
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 720px;
    padding-top: 145px;
    padding-bottom: 100px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    font-size: 34px;
  }

  .statement h2,
  .section-heading h2,
  .process h2,
  .testimonials h2,
  .about h2,
  .cta h2 {
    font-size: clamp(26px, 6vw, 38px);
  }

  .process {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Hero: conteúdo 100px mais estreito em cada lateral no desktop. */
@media (min-width: 1081px) and (max-width: 1919px) {
  .hero {
    padding-left: calc(8vw + 100px);
    padding-right: calc(8vw + 100px);
  }
}

@media (min-width: 1920px) {
  .hero {
    padding-left: calc((100% - 1920px) / 2 + 253.6px);
    padding-right: calc((100% - 1920px) / 2 + 253.6px);
  }
}

.cta {
  background-color: var(--wine);
  background-image: url('assets/seu-proximo-passov2.png');
  background-position: center bottom;
  background-size: auto 100%;
  background-repeat: no-repeat;
}

@media (max-width: 1080px) {
  .cta {
    background-image: url('assets/seu-proximo-passo-cellv2.png');
    background-position: center bottom;
    background-size: auto 100%;
  }
}

.cta {
  position: relative;
  isolation: isolate;
  background-image: none;
  background-color: var(--wine);
}

.cta::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background: url('assets/seu-proximo-passov2.png') center bottom / 100% auto no-repeat;
  opacity: .7;
  pointer-events: none;
}

.cta > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 1081px) {
  .cta {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}

@media (max-width: 1080px) {
  .cta::before {
    background-image: url('assets/seu-proximo-passo-cellv2.png');
    background-position: center bottom;
    background-size: auto auto;
  }
}

/* Redução vertical de 30px nas sessões solicitadas. */
@media (min-width: 1081px) {
  .benefits { padding-top: 80px; padding-bottom: 90px; }
  .process { padding-top: 100px; padding-bottom: 120px; }
  .testimonials { padding-top: 95px; padding-bottom: 120px; }
  .about { padding-top: 80px; padding-bottom: 80px; }
}

@media (min-width: 561px) and (max-width: 1080px) {
  .benefits { padding-top: 80px; padding-bottom: 90px; }
  .process { padding-top: 100px; padding-bottom: 120px; }
  .testimonials { padding-top: 95px; padding-bottom: 120px; }
  .about { padding-top: 80px; padding-bottom: 80px; }
}

@media (max-width: 560px) {
  .benefits { padding-top: 50px; padding-bottom: 75px; }
  .process { padding-top: 50px; padding-bottom: 75px; }
  .testimonials { padding-top: 55px; padding-bottom: 75px; }
  .about { padding-top: 50px; padding-bottom: 75px; }
}

/* Aumento de aproximadamente 10px nos títulos apenas no desktop. */
@media (min-width: 1081px) {
  .hero h1 {
    font-size: clamp(42px, 3.8vw, 58px);
  }

  .statement h2,
  .section-heading h2,
  .process h2,
  .testimonials h2,
  .about h2,
  .cta h2 {
    font-size: clamp(34px, 3vw, 48px);
  }

  .benefit-grid h3 {
    font-size: 27px;
  }

  .steps h3 {
    font-size: 24px;
    line-height: 1.085;
    font-weight: 400;
  }

  .benefit-grid h3 {
    font-size: 16.875px;
  }
}

@media (min-width: 1568px) {
  .statement {
    max-width: 1200px;
  }

  .statement h2 {
    white-space: nowrap;
  }
}

.method-title-mobile {
  display: none;
}

@media (max-width: 1080px) {
  .method-title-desktop {
    display: none;
  }

  .method-title-mobile {
    display: inline;
  }

  .benefit-grid h3 {
    font-size: 10.625px;
  }
}

/* Inversão cromática da seção do Método. */
.process {
  background-color: var(--wine);
  box-shadow: 0 0 0 100vmax var(--wine);
}

.process .eyebrow {
  color: #e5bb57;
}

.process h2 {
  color: #fff;
}

.process-intro > p:last-child,
.steps p {
  color: rgba(255, 255, 255, .82);
}

.steps {
  border-color: rgba(255, 255, 255, .35);
}

.steps article {
  border-color: rgba(255, 255, 255, .35);
}

.steps h3 {
  color: #fff;
}

.steps article > span {
  background: #fff;
  color: var(--wine);
}

.process .scroll-cue {
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
}

.faq-list {
  width: min(760px, 100%);
  margin: 32px auto 36px;
  text-align: left;
}

.faq-list details {
  padding: 0 clamp(20px, 3vw, 28px);
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.faq-list details:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 18px 42px 18px 0;
  color: #fff;
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 700;
}

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

.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 2px;
  top: 50%;
  color: #f2da5e;
  font-size: 24px;
  font-weight: 400;
  transform: translateY(-50%);
  transition: transform .25s ease;
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list details p {
  max-width: none;
  margin: 0;
  padding: 0 0 22px;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  text-align: left;
}
