:root {
  --green-950: #12331c;
  --green-900: #1f4b26;
  --green-800: #2f6d2b;
  --green-700: #3f7f32;
  --green-500: #73a663;
  --green-200: #dff1d9;
  --mint: #eef8ea;
  --cream: #faf8ef;
  --cream-deep: #f1eddf;
  --white: #fff;
  --charcoal: #1e241d;
  --gray: #6f746b;
  --gold: #d6b56d;
  --line: rgba(31, 75, 38, .13);
  --glass: rgba(255, 255, 255, .68);
  --shadow-sm: 0 12px 35px rgba(25, 61, 31, .09);
  --shadow-lg: 0 40px 90px rgba(25, 61, 31, .16);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 46px;
  --container: min(1180px, calc(100% - 48px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

/* Scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--green-500) transparent;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--green-500);
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--green-700);
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::selection {
  color: var(--white);
  background: var(--green-700);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

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

p {
  line-height: 1.7;
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -.045em;
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.15rem, 5.8vw, 5.9rem);
  line-height: .99;
  font-weight: 700;
}

h1 em {
  display: block;
  color: var(--green-700);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.055em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 4.1vw, 4.6rem);
  line-height: 1.04;
  font-weight: 650;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.15;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 130px 0;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 11px 18px;
  color: var(--white);
  background: var(--green-900);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform .2s;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
}

.site-header.is-scrolled {
  position: fixed;
  padding: 12px 0;
  background: rgba(250, 248, 239, .85);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(25, 61, 31, .06);
  backdrop-filter: blur(18px);
  animation: header-in .45s var(--ease);
}

@keyframes header-in {
  from { transform: translateY(-100%); }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.brand strong {
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: var(--white);
  background: var(--green-900);
  border-radius: 50%;
}

.brand-mark svg {
  width: 21px;
  height: 21px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #425040;
  font-size: .9rem;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--green-700);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 58px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--white);
  background: var(--green-900);
  border: 1px solid var(--green-900);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(31, 75, 38, .19);
  font-weight: 700;
  transition: box-shadow .35s var(--ease), background .35s, color .35s, border-color .35s, transform .35s var(--ease);
}

.button:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  box-shadow: 0 18px 40px rgba(31, 75, 38, .27);
  transform: translateY(-3px);
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform .3s var(--ease);
}

.button:hover svg {
  transform: translateX(4px);
}

.button-small {
  min-height: 46px;
  padding: 0 20px;
  font-size: .86rem;
}

.button-cream {
  color: var(--green-950);
  background: var(--cream);
  border-color: var(--cream);
}

.button-cream:hover {
  color: var(--green-950);
  background: var(--white);
  border-color: var(--white);
}

.button-outline {
  color: var(--green-900);
  background: transparent;
  border-color: rgba(31, 75, 38, .25);
  box-shadow: none;
}

.button-outline:hover {
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
}

.text-link span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform .3s var(--ease), background .3s, color .3s;
}

.text-link:hover span {
  color: var(--white);
  background: var(--green-900);
  transform: rotate(-45deg);
}

.eyebrow {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  color: var(--green-700);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: block;
  width: 17px;
  height: 17px;
  margin-right: 9px;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.5 3.5C11 4 5.4 8.2 5 14.3c-.2 3.2 2.3 5.5 5.5 5.2 6.2-.5 9.4-7.4 10-16Z'/%3E%3Cpath d='M4 21c2.6-5 6.5-8.9 12-11.5'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.5 3.5C11 4 5.4 8.2 5 14.3c-.2 3.2 2.3 5.5 5.5 5.2 6.2-.5 9.4-7.4 10-16Z'/%3E%3Cpath d='M4 21c2.6-5 6.5-8.9 12-11.5'/%3E%3C/svg%3E") no-repeat center / contain;
}

.eyebrow-light {
  color: #cfe8c8;
}

.eyebrow-mini {
  margin-bottom: 8px;
  color: var(--green-700);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: flex;
  min-height: 760px;
  padding: 72px 0 90px;
  align-items: center;
  background:
    radial-gradient(circle at 83% 23%, rgba(154, 196, 133, .47), transparent 27%),
    radial-gradient(circle at 12% 68%, rgba(214, 181, 109, .12), transparent 25%),
    linear-gradient(135deg, #fbf9f0 0%, #eef6e8 100%);
  overflow: hidden;
}

/* funde o fundo do hero para creme na base, eliminando a linha de divisão com a faixa */
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 220px;
  background: linear-gradient(180deg, rgba(250, 248, 239, 0) 0%, var(--cream) 100%);
  pointer-events: none;
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

.hero-glow {
  position: absolute;
  top: 10%;
  right: 14%;
  width: 420px;
  height: 600px;
  background: rgba(125, 176, 102, .26);
  filter: blur(100px);
  border-radius: 50%;
  animation: breathe 6s ease-in-out infinite alternate;
}

@keyframes breathe {
  to { opacity: .55; transform: scale(1.13); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: center;
  gap: 30px;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 34px;
  color: #556052;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  margin-bottom: 33px;
  align-items: center;
  gap: 25px;
}

.microcopy {
  margin: 13px 0 0;
  color: #858b82;
  font-size: .72rem;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-image-wrap {
  display: block;
  width: 100%;
}

.hero-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@keyframes note-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.capsule,
.final-capsule {
  position: absolute;
  z-index: 5;
  width: 66px;
  height: 26px;
  border-radius: 999px;
  /* cápsula verde-escura sólida e brilhante, idêntica às do produto */
  background:
    /* emenda central onde a tampa encaixa no corpo */
    linear-gradient(90deg,
      transparent 45%,
      rgba(5, 22, 11, .55) 48%,
      rgba(5, 22, 11, .28) 50%,
      rgba(205, 235, 188, .42) 51%,
      transparent 54%),
    /* volume cilíndrico verde (gloss no topo → sombra na base) */
    linear-gradient(180deg,
      #318043 0%,
      #216231 38%,
      #184b25 70%,
      #0e3719 100%);
  box-shadow:
    0 16px 28px rgba(13, 42, 21, .32),
    0 3px 8px rgba(13, 42, 21, .22),
    inset 0 -5px 9px rgba(6, 26, 13, .55),
    inset 0 4px 7px rgba(190, 230, 170, .3),
    inset 0 0 0 1px rgba(8, 32, 16, .4);
}

/* reflexo especular suave ao longo do topo da cápsula */
.capsule::before,
.final-capsule::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 15%;
  height: 27%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(228, 248, 214, .85), rgba(228, 248, 214, .12) 72%, transparent);
  filter: blur(.5px);
}

/* ponto de luz forte na ponta arredondada */
.capsule::after,
.final-capsule::after {
  content: "";
  position: absolute;
  left: 8%;
  top: 24%;
  width: 14%;
  height: 28%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, .95), rgba(255, 255, 255, 0));
}

.capsule-a {
  top: 22%;
  right: 17%;
  transform: rotate(-32deg);
  animation: capsule-drift 8s ease-in-out infinite;
}

.capsule-b {
  right: 42%;
  bottom: 9%;
  width: 54px;
  height: 22px;
  transform: rotate(28deg);
  animation: capsule-drift 7s ease-in-out infinite 1.2s;
}

.capsule-c {
  top: 10%;
  right: 48%;
  width: 44px;
  height: 18px;
  opacity: .9;
  transform: rotate(62deg);
  animation: capsule-drift 9s ease-in-out infinite .5s;
}

@keyframes capsule-drift {
  0%, 100% { translate: 0 0; }
  50% { translate: 9px -25px; rotate: 8deg; }
}

/* faixa única horizontal — clean, fundo claro, contorno e texto verdes */
.trust-strip {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--cream);
  border-block: 1px solid rgba(63, 127, 50, .4);
}

.trust-track {
  display: flex;
  width: max-content;
  align-items: center;
  padding: 16px 0;
  animation: trust-marquee 40s linear infinite;
}

.trust-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

@keyframes trust-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.trust-card {
  display: flex;
  flex: 0 0 auto;
  margin-right: 44px;
  align-items: center;
  gap: 10px;
  color: var(--green-800);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .01em;
  white-space: nowrap;
}

.trust-card > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--green-700);
  background: transparent;
  border: 1.5px solid rgba(63, 127, 50, .45);
  border-radius: 50%;
}

.trust-card > span svg {
  width: 16px;
  height: 16px;
}

.section-heading {
  max-width: 700px;
}

.section-heading > p:not(.eyebrow),
.compare-copy > p:not(.eyebrow),
.faq-aside > p:not(.eyebrow) {
  color: var(--gray);
  font-size: 1.03rem;
}

.split-heading {
  display: grid;
  max-width: none;
  margin-bottom: 60px;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 80px;
}

.split-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 7px;
}

.centered-heading {
  margin: 0 auto 58px;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.routine-section {
  padding-top: 145px;
  background:
    radial-gradient(circle at 7% 60%, rgba(223, 241, 217, .76), transparent 23%),
    var(--cream);
}

/* ===== Seção rotina: jornada editorial (foto + trilha de 3 passos) ===== */
.routine-layout {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: 38px;
  align-items: stretch;
}

/* foto editorial */
.routine-feature {
  position: relative;
  margin: 0;
  min-height: 540px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.routine-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.routine-feature:hover img {
  transform: scale(1.05);
}

.routine-feature::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(100deg, rgba(15, 42, 22, .78) 0%, rgba(15, 42, 22, .34) 40%, transparent 64%),
    linear-gradient(transparent 60%, rgba(15, 42, 22, .45));
}

.routine-feature figcaption {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 32px;
  max-width: 47%;
  transform: translateY(-50%);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -.02em;
}

/* trilha / jornada */
.routine-journey {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  flex: 1;
  align-content: center;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid rgba(31, 75, 38, .1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s;
}

.journey-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.journey-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--green-700);
  background: var(--mint);
  border-radius: 16px;
}

.journey-icon svg {
  width: 26px;
  height: 26px;
}

.journey-body {
  position: relative;
  min-width: 0;
}

.journey-body h3 {
  margin: 0 0 7px;
  font-size: 1.4rem;
}

.journey-body p {
  margin: 0;
  color: var(--gray);
  font-size: .92rem;
}

/* passo final em destaque */
.journey-step-final {
  color: var(--white);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(115, 166, 99, .35), transparent 55%),
    linear-gradient(140deg, #2f6d2b 0%, #1f4b26 48%, #12331c 100%);
  border-color: transparent;
}

.journey-step-final .journey-icon {
  color: var(--green-900);
  background: #d9efcc;
}

.journey-step-final .journey-body p {
  color: rgba(255, 255, 255, .72);
}

.journey-manifesto {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.journey-manifesto span {
  color: #c7e0bd;
  font-size: .78rem;
}

.journey-manifesto strong {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
}

.product-story {
  position: relative;
  padding: 0;
  color: var(--white);
  background: var(--green-950);
  overflow: clip;
}

/* divisórias onduladas (S deitado) no topo e na base da seção */
.story-wave {
  position: absolute;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 58px;
  fill: var(--cream);
  stroke: none;
  pointer-events: none;
}

.story-wave-top {
  top: -1px;
}

.story-wave-bottom {
  bottom: -1px;
}

.product-story-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 45%, rgba(126, 178, 103, .27), transparent 24%),
    linear-gradient(110deg, transparent 0 55%, rgba(255, 255, 255, .035) 55%);
}

.product-story::after {
  position: absolute;
  top: -10%;
  left: 26%;
  width: 600px;
  height: 600px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
}

.story-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 100px;
}

.story-sticky {
  position: sticky;
  top: 80px;
  display: flex;
  min-height: 100vh;
  padding: 110px 0 70px;
  flex-direction: column;
  justify-content: center;
}

.story-sticky h2 {
  max-width: 640px;
  font-size: clamp(2.2rem, 3.3vw, 3.6rem);
}

.story-brand {
  color: #9fd083;
}

.story-product {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: 640px;
  overflow: hidden;
  border-radius: 28px;
  margin: 32px 0 -10px;
}

.story-product img,
.story-product video {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .32);
  object-fit: cover;
}

/* balões "glass" sobre a imagem */
.story-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: var(--green-900);
  font-weight: 700;
  font-size: .9rem;
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.story-badge svg {
  width: 17px;
  height: 17px;
  color: var(--green-700);
}

.story-badge-a {
  top: 20px;
  left: 16px;
  animation: note-float 5s ease-in-out infinite;
}

.story-badge-b {
  right: 16px;
  bottom: 30px;
  animation: note-float 5.6s ease-in-out infinite .6s;
}

.story-steps {
  padding: 200px 0 140px;
}

.story-intro {
  max-width: 570px;
  margin-bottom: 56px;
  color: rgba(255, 255, 255, .67);
  font-size: 1.12rem;
}

.story-card {
  display: grid;
  min-height: 110px;
  padding: 28px 0;
  grid-template-columns: 70px 1fr;
  align-items: start;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.story-card > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #d9edcf;
  border: 1px solid rgba(217, 237, 207, .35);
  border-radius: 50%;
  font-size: .75rem;
}

.story-card h3 {
  max-width: 460px;
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.story-card p {
  max-width: 500px;
  color: rgba(255, 255, 255, .62);
}

.benefits-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at 95% 10%, rgba(223, 241, 217, .85), transparent 22%),
    var(--cream);
}

/* 4-column editorial pillar strip */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(63, 127, 50, .13);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.pillar-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 34px 28px;
  background: var(--white);
  border-right: 1px solid rgba(63, 127, 50, .1);
  transition: background .3s var(--ease);
}

.pillar-card:last-child {
  border-right: none;
}

.pillar-card:hover {
  background: rgba(250, 248, 239, .85);
}

.pillar-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  place-items: center;
  color: var(--green-700);
  background: rgba(63, 127, 50, .09);
  border-radius: 14px;
}

.pillar-icon svg {
  width: 22px;
  height: 22px;
}

.pillar-card .eyebrow-mini {
  margin-bottom: 2px;
}

.pillar-card h3 {
  margin: 4px 0 8px;
  font-size: 1.15rem;
  line-height: 1.25;
}

.pillar-card div > p:last-child {
  margin: 0;
  color: var(--gray);
  font-size: .86rem;
  line-height: 1.55;
}

/* info bar: ingredients + clean tags */
.benefits-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  padding: 14px 22px;
  background: rgba(63, 127, 50, .055);
  border: 1px solid rgba(63, 127, 50, .11);
  border-radius: var(--radius-sm);
}

.benefits-bar-left {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.benefits-bar-left span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: var(--green-900);
  color: var(--white);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
}

.benefits-bar-left svg {
  width: 14px;
  height: 14px;
}

.benefits-bar-right {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.benefits-bar-right span {
  padding: 6px 13px;
  border: 1px solid rgba(63, 127, 50, .28);
  border-radius: 999px;
  color: var(--green-800);
  font-size: .75rem;
  font-weight: 600;
}

.ingredients-section {
  background: #edf4e9;
}

/* ===== Ingredientes: layout editorial em strips ===== */
.ing-list {
  margin-top: 8px;
  border-top: 1px solid rgba(31, 75, 38, .16);
}

.ing-row {
  display: grid;
  grid-template-columns: 56px 1fr 1fr 190px;
  align-items: center;
  gap: 48px;
  padding: 30px 16px;
  margin-inline: -16px;
  border-bottom: 1px solid rgba(31, 75, 38, .16);
  border-radius: 14px;
  transition: background .3s var(--ease);
}

.ing-row:hover {
  background: rgba(255, 255, 255, .72);
}

.ing-num {
  font-family: "Manrope", sans-serif;
  font-size: .72rem;
  font-weight: 800;
  color: var(--green-700);
  letter-spacing: .15em;
  align-self: start;
  padding-top: 10px;
}

.ing-name small {
  display: block;
  margin-bottom: 7px;
  color: var(--green-700);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.ing-name h3 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.ing-desc {
  margin: 0;
  color: var(--gray);
  font-size: .92rem;
  line-height: 1.68;
}

.ing-img {
  width: 190px;
  height: 130px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.carousel-controls {
  display: flex;
  gap: 9px;
}

.round-button {
  display: grid;
  width: 51px;
  height: 51px;
  padding: 0;
  place-items: center;
  color: var(--green-900);
  background: rgba(255, 255, 255, .65);
  border: 1px solid rgba(31, 75, 38, .15);
  border-radius: 50%;
  cursor: pointer;
  transition: color .3s, background .3s, transform .3s var(--ease);
}

.round-button:hover {
  color: var(--white);
  background: var(--green-900);
  transform: translateY(-2px);
}

.carousel {
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}


.crop-left img { object-position: 0 center; transform: translateX(0); }
.crop-center img { object-position: center; transform: translateX(-19%); }
.crop-right img { object-position: right; transform: translateX(-37%); }


.carousel-progress {
  width: 100%;
  height: 2px;
  margin-top: 30px;
  background: rgba(31, 75, 38, .12);
}

.carousel-progress span {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--green-700);
  transition: transform .4s var(--ease);
  transform-origin: left;
}

.section-disclaimer {
  margin: 18px 0 0;
  color: var(--gray);
  font-size: .74rem;
}

.how-section {
  background: var(--cream);
}

.how-header {
  margin-bottom: 52px;
  text-align: center;
}

.how-header .eyebrow {
  justify-content: center;
}

.how-header > p:not(.eyebrow) {
  max-width: 440px;
  margin-inline: auto;
  color: var(--gray);
}

.how-body {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  align-items: start;
  gap: 56px;
}

.how-video {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--green-200);
  box-shadow: var(--shadow-lg);
}

.how-video video,
.how-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.timeline {
  position: relative;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 40px;
  bottom: 100px;
  left: 35px;
  width: 1px;
  content: "";
  background: linear-gradient(var(--green-700), rgba(63, 127, 50, .12));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 30px;
  margin-bottom: 16px;
}

.timeline-number {
  position: relative;
  z-index: 2;
  display: grid;
  width: 70px;
  height: 34px;
  margin-top: 10px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(90deg, var(--green-900) 0 49%, var(--green-500) 51%);
  border: 4px solid var(--cream);
  border-radius: 999px;
  box-shadow: 0 7px 20px rgba(31, 75, 38, .17);
  font-size: .69rem;
}

.timeline-item > div {
  padding: 24px 26px;
  background: var(--white);
  border: 1px solid rgba(31, 75, 38, .08);
  border-radius: 18px;
  box-shadow: 0 3px 18px rgba(31, 75, 38, .06);
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.timeline-item > div:hover {
  box-shadow: 0 8px 30px rgba(31, 75, 38, .11);
  border-color: rgba(31, 75, 38, .18);
}

.timeline-item h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.timeline-item p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: .88rem;
}

.timeline-note {
  display: flex;
  margin-left: 102px;
  padding: 16px 20px;
  align-items: center;
  gap: 12px;
  color: var(--green-900);
  background: var(--green-200);
  border-radius: 16px;
  font-size: .79rem;
  font-weight: 650;
}

.timeline-note svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}


.testimonials-section {
  color: var(--white);
  background:
    radial-gradient(circle at 50% 10%, rgba(121, 170, 99, .2), transparent 24%),
    var(--green-950);
  overflow: hidden;
}

.testimonials-section::before,
.testimonials-section::after {
  position: absolute;
  width: 430px;
  height: 430px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 50%;
}

.testimonials-section::before { top: -200px; left: -100px; }
.testimonials-section::after { right: -160px; bottom: -230px; }

.light-heading > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .6);
}

/* Reviews marquee */
.reviews-wrap {
  position: relative;
  margin: 40px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

.reviews-wrap::before,
.reviews-wrap::after {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  content: "";
  z-index: 2;
  pointer-events: none;
}

.reviews-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--green-950), transparent);
}

.reviews-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--green-950), transparent);
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: 14px;
}

.reviews-track-a { animation: reviews-left 55s linear infinite; }
.reviews-track-b { animation: reviews-right 55s linear infinite; }

.reviews-track:hover { animation-play-state: paused; }

@keyframes reviews-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes reviews-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.reviews-group {
  display: flex;
  gap: 14px;
}

.rv-card {
  flex-shrink: 0;
  width: 290px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  transition: background .3s var(--ease);
}

.rv-card:hover { background: rgba(255, 255, 255, .12); }

.rv-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.rv-avatar {
  display: grid;
  width: 40px; height: 40px;
  flex-shrink: 0;
  place-items: center;
  background: var(--av, var(--green-700));
  color: var(--white);
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.rv-meta { flex: 1; min-width: 0; }

.rv-meta strong {
  display: block;
  font-size: .84rem;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rv-meta time {
  font-size: .7rem;
  color: rgba(255, 255, 255, .42);
}

.rv-google { width: 20px; height: 20px; flex-shrink: 0; stroke: none; }

.rv-stars {
  color: #f4b400;
  font-size: .8rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.rv-text {
  margin: 0;
  font-size: .83rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, .68);
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; }
}

.testimonial-disclaimer {
  display: flex;
  margin: 10px auto 0;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: rgba(255, 255, 255, .52);
  font-size: .7rem;
}

.testimonial-disclaimer svg {
  width: 17px;
  height: 17px;
}

.offer-section {
  background:
    radial-gradient(circle at 50% 60%, rgba(223, 241, 217, .82), transparent 34%),
    var(--cream);
}

.offer-heading {
  max-width: 560px;
  margin: 0 auto 52px;
  text-align: center;
}

.offer-heading .eyebrow { justify-content: center; }
.offer-heading > p:not(.eyebrow) { color: var(--gray); }

/* ── 3-column grid: 1 pote | 3 potes (destaque central) | 2 potes ── */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 16px;
  align-items: center;
}

.offer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 26px 24px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(31, 75, 38, .1);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}

.offer-card:not(.offer-card--featured):hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.offer-tag {
  width: 100%;
  padding: 9px 14px;
  text-align: center;
  color: var(--green-700);
  background: linear-gradient(135deg, rgba(223, 241, 217, .95) 0%, rgba(195, 228, 185, .75) 100%);
  border: 1px solid rgba(31, 75, 38, .16);
  border-radius: 14px;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.offer-tag::before {
  content: "✦  ";
  font-size: .55rem;
  opacity: .75;
}

.popular-label {
  width: 100%;
  padding: 10px 14px;
  text-align: center;
  color: #4a2e00;
  background: linear-gradient(135deg, #f0d040 0%, #d4a820 45%, #e8c030 100%);
  border-radius: 14px;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(180, 140, 5, .32), inset 0 1px 0 rgba(255, 255, 255, .45);
}

.popular-label::before {
  content: "★  ";
  font-size: .7rem;
}

.offer-img {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 12px 0 16px;
}

.offer-img img {
  width: 150px;
  height: auto;
  object-fit: contain;
}

.offer-card h3 {
  font-size: 1.25rem;
  color: var(--green-900);
  margin: 0 0 4px;
}

.offer-card > p {
  color: var(--gray);
  font-size: .85rem;
  margin: 0 0 4px;
  flex: 1;
}

.offer-card .button { width: 100%; margin-top: auto; }

/* ── featured center card ── */
.offer-card--featured {
  position: relative;
  top: -14px;
  padding: 30px 26px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 26px;
  color: var(--white);
  background:
    radial-gradient(ellipse at 20% 90%, rgba(212, 175, 55, .22), transparent 46%),
    radial-gradient(ellipse at 80% 5%,  rgba(118, 210, 96, .3),  transparent 48%),
    radial-gradient(ellipse at 50% 50%, rgba(40, 100, 60, .4),   transparent 70%),
    linear-gradient(155deg, #1e5e30 0%, #122f1e 55%, #0b2818 100%);
  box-shadow:
    0 50px 90px rgba(8, 36, 18, .45),
    0 0 0 1px rgba(255, 255, 255, .07);
}

.offer-card--featured h3 {
  color: var(--white);
  font-size: 1.45rem;
}

.offer-card--featured > p { color: rgba(255, 255, 255, .6); }

.offer-card--featured .offer-img img { width: 180px; }

/* price */
.price {
  margin: 14px 0 20px;
}

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

.price strong {
  color: var(--green-900);
  font-family: "Manrope", sans-serif;
  font-size: 1.75rem;
  margin-bottom: 2px;
}

.price span {
  color: var(--gray);
  font-size: .68rem;
}

.offer-card--featured .price strong { color: var(--white); font-size: 2rem; }
.offer-card--featured .price span   { color: rgba(255, 255, 255, .5); }

.offer-saving {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  background: rgba(31, 120, 60, .1);
  border: 1px solid rgba(31, 120, 60, .2);
  border-radius: 20px;
  color: var(--green-700);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.offer-card--featured .price .offer-saving {
  background: rgba(212, 175, 55, .18);
  border-color: rgba(212, 175, 55, .45);
  color: #f0d060;
}


/* perks list (only on featured card) */
.offer-perks {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.offer-perks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .7);
}

.offer-perks li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: var(--gold);
}

.checkout-trust {
  display: flex;
  margin-top: 42px;
  padding: 20px 25px;
  align-items: center;
  justify-content: center;
  gap: 35px;
  background: rgba(255, 255, 255, .66);
  border: 1px solid rgba(31, 75, 38, .08);
  border-radius: 20px;
}

.checkout-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #526050;
  font-size: .75rem;
  font-weight: 650;
}

.checkout-trust svg {
  width: 18px;
  height: 18px;
  color: var(--green-700);
}

.guarantee-note {
  margin: 15px 0 0;
  color: var(--gray);
  text-align: center;
  font-size: .68rem;
}

.compare-section {
  background: #eaf2e6;
}

.compare-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  align-items: center;
  gap: 85px;
}

.compare-copy .text-link {
  margin-top: 20px;
}

.comparison-card {
  padding: 12px;
  background: rgba(255, 255, 255, .71);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: 1.35fr .7fr .7fr;
  align-items: center;
  gap: 12px;
}

.comparison-head {
  padding: 12px 18px 18px;
  color: var(--gray);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.comparison-head strong {
  padding: 10px;
  color: var(--white);
  background: var(--green-900);
  border-radius: 12px;
  text-align: center;
}

.comparison-row {
  min-height: 70px;
  padding: 10px 18px;
  border-top: 1px solid rgba(31, 75, 38, .08);
  font-size: .8rem;
}

.comparison-row > span:last-child {
  color: #8b9088;
  text-align: center;
}

.comparison-row strong {
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--green-900);
  background: rgba(223, 241, 217, .66);
  border-radius: 12px;
}

.comparison-row i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--white);
  background: var(--green-700);
  border-radius: 50%;
  font-size: .64rem;
  font-style: normal;
}

.faq-section {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: 90px;
}

.faq-aside {
  position: sticky;
  top: 120px;
}

.faq-product {
  position: relative;
  width: 220px;
  height: 270px;
  margin: 48px auto 0;
}

.faq-product::after {
  position: absolute;
  z-index: -1;
  top: 20px;
  left: -30px;
  width: 280px;
  height: 280px;
  content: "";
  background: var(--green-200);
  border-radius: 50%;
}

.faq-product img {
  width: 100%;
  height: 100%;
  border-radius: 110px 110px 20px 20px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  animation: note-float 5.5s ease-in-out infinite;
}

.faq-list details {
  border-bottom: 1px solid rgba(31, 75, 38, .13);
}

.faq-list summary {
  position: relative;
  padding: 27px 55px 27px 0;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary span {
  position: absolute;
  top: 50%;
  right: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(31, 75, 38, .17);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background .3s, transform .35s var(--ease);
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1px;
  content: "";
  background: var(--green-900);
  transform: translate(-50%, -50%);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .3s;
}

.faq-list details[open] summary span {
  background: var(--green-200);
  transform: translateY(-50%) rotate(180deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%);
}

.faq-list details p {
  max-width: 690px;
  margin: -5px 50px 28px 0;
  color: var(--gray);
  font-size: .9rem;
  animation: faq-in .35s var(--ease);
}

@keyframes faq-in {
  from { opacity: 0; transform: translateY(-6px); }
}

.final-cta {
  position: relative;
  padding: 105px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 46%, rgba(153, 204, 131, .28), transparent 26%),
    linear-gradient(130deg, #173d21, #2c6d31);
  overflow: hidden;
}

.final-cta::before {
  position: absolute;
  top: -70%;
  right: 5%;
  width: 750px;
  height: 750px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 48px;
}

.final-copy {
  position: relative;
  z-index: 2;
}

.final-copy h2 {
  max-width: 780px;
}

.final-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, .67);
  font-size: 1.03rem;
}

.final-copy > .button {
  margin-top: 15px;
}

.final-trust {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 15px;
}

.final-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .75);
  font-size: .73rem;
}

.final-trust svg {
  color: #cbe7c0;
}

.final-copy > small {
  display: block;
  margin-top: 15px;
  color: rgba(255, 255, 255, .42);
  font-size: .65rem;
}

.final-product {
  position: relative;
  z-index: 2;
  align-self: stretch;
}

.final-product img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.final-capsule {
  opacity: 1;
  z-index: 10;
}

.fc-one { top: 16%; right: 42%; transform: rotate(-22deg); animation: capsule-drift 8s ease-in-out infinite; }
.fc-two { right: 4%; bottom: 11%; transform: rotate(48deg) scale(.7); animation: capsule-drift 7s ease-in-out infinite 1s; }

@media (min-width: 820px) and (max-width: 1440px) {
  .capsule-a { right: 11%; }
  .capsule-b { right: 35%; }
  .capsule-c { right: 41%; }
}

@media (min-width: 1228px) {
  .fc-two {
    right: calc((100% - 1180px) / 2 + 28px);
  }
}

.site-footer {
  position: relative;
  padding: clamp(54px, 7vw, 100px);
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 10%, rgba(96, 170, 60, .12), transparent 28%),
    #0d2715;
  color: var(--white);
}

.footer__main,
.footer__bottom {
  position: relative;
  z-index: 2;
}

.footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  gap: clamp(70px, 12vw, 190px);
  align-items: start;
}

.brand-light {
  color: var(--white);
}

.brand-light .brand-mark {
  color: #0d2715;
  background: #9fd083;
}

.footer__brand p {
  max-width: 430px;
  margin: 30px 0;
  color: rgba(255, 255, 255, .6);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(159, 208, 131, .65);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: gap 180ms ease, color 180ms ease;
}

.footer__cta:hover {
  gap: 26px;
  color: #9fd083;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  padding-top: 6px;
}

.footer__nav div {
  display: grid;
  gap: 16px;
}

.footer__nav div > span {
  margin-bottom: 10px;
  color: #9fd083;
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.footer__nav a {
  color: rgba(255, 255, 255, .68);
  font-size: .82rem;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.footer__nav a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer__bottom {
  margin-top: clamp(48px, 7vw, 80px);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.final-legal {
  margin-top: 48px;
  color: rgba(255, 255, 255, .28);
  font-size: .6rem;
  line-height: 1.8;
}

.footer__bottom-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer__bottom-bar p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .42);
  font-size: .66rem;
}

.footer__developer {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .62);
  font-size: .8rem;
  white-space: nowrap;
}

.footer__developer-link {
  display: inline-flex;
  border-radius: 4px;
}

.footer__developer-link img {
  width: 78px;
  height: auto;
  opacity: .72;
  filter: invert(1);
  transition: filter 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.footer__developer-link:hover img {
  opacity: 1;
  filter: invert(1) drop-shadow(0 0 8px rgba(255,255,255,.9)) drop-shadow(0 0 18px rgba(159,208,131,.65));
  transform: scale(1.04);
}

.footer__watermark {
  position: absolute;
  right: 0;
  bottom: 0;
  color: rgba(255, 255, 255, .07);
  font-size: clamp(6rem, 18vw, 17rem);
  font-weight: 800;
  line-height: .8;
  letter-spacing: -.09em;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 60%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 60%);
}

.footer__logo-link {
  display: inline-block;
}

.footer__logo-img {
  height: clamp(48px, 6vw, 72px);
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.footer__back-top {
  position: relative;
  z-index: 3;
  display: grid;
  width: 58px;
  height: 58px;
  margin: -29px auto -29px;
  place-items: center;
  border: 6px solid var(--cream);
  border-radius: 50%;
  background: #9fd083;
  color: #0d2715;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(13, 39, 21, .18);
  transition: background-color 180ms ease, transform 180ms ease;
}

.footer__back-top:hover {
  background: var(--white);
  transform: translateY(-4px);
}

.site-footer a:focus-visible,
.footer__back-top:focus-visible {
  outline: 3px solid rgba(96, 170, 60, .4);
  outline-offset: 4px;
}

.sticky-mobile-cta {
  display: none;
}

/* Mesmo botão flutuante da landing do LT Gloss, na paleta da Levefit: usa a
   cor da marca em vez do verde do WhatsApp, para não destoar da página. */
.whatsapp-btn {
  position: fixed;
  z-index: 190;
  right: clamp(18px, 2.5vw, 34px);
  bottom: clamp(18px, 2.5vw, 34px);
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 50%;
  background: var(--green-800);
  box-shadow: 0 14px 34px rgba(25, 61, 31, .3);
  color: var(--white);
  text-decoration: none;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

/* A regra global de svg desta página é para ícones de traço (width/height 1em,
   fill: none, stroke). Este glifo é cheio, então precisa desfazer os quatro —
   sem zerar o stroke o contorno engrossa o desenho, e sem a altura o ícone
   encolhe para 1em. */
.whatsapp-btn svg {
  display: block;
  width: 29px;
  height: 29px;
  fill: currentColor;
  stroke: none;
}

.whatsapp-btn:hover {
  background: var(--green-950);
  box-shadow: 0 18px 40px rgba(25, 61, 31, .4);
  transform: translateY(-4px);
}

.whatsapp-btn:focus-visible {
  outline: 3px solid rgba(47, 109, 43, .36);
  outline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  :root {
    --container: min(960px, calc(100% - 40px));
  }

  .hero {
    min-height: 720px;
  }

  .hero-grid {
    grid-template-columns: 1fr .86fr;
  }

  .story-grid {
    gap: 50px;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-grid,
  .faq-grid,
  .compare-grid {
    gap: 55px;
  }

  .offer-card {
    padding: 20px 18px;
  }

  .offer-card--featured {
    padding: 24px 20px;
  }
}

/* telas pequenas/laptops (ex.: 15"): imagem menor, fontes menores e conteúdo mais para cima.
   Telas grandes (>=1601px, ex.: monitor 24" em 1920) não são afetadas. */
@media (min-width: 821px) and (max-width: 1600px) {
  .hero {
    min-height: auto;
    padding: 40px 0 56px;
  }

  h1 {
    font-size: clamp(2.5rem, 4.1vw, 3.6rem);
  }

  .hero-text {
    margin-bottom: 26px;
    font-size: 1rem;
  }

  .hero-image-wrap {
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 1100px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

@media (max-width: 820px) {
  :root {
    --container: calc(100% - 32px);
    --gutter: 32px;
  }

  .final-cta {
    overflow: visible;
  }

  .fc-one {
    top: -22px;
    right: 60%;
    z-index: 20;
  }

  .section {
    padding: 92px 0;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 40px 0 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow {
    justify-content: center;
  }

  .hero-text {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

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

  /* imagem mobile ocupa a largura total da tela (full-bleed), altura proporcional;
     breakout pela margem real do container (sem 100vw, evita scroll por causa da barra de rolagem) */
  .hero-image-wrap {
    width: calc(100% + var(--gutter));
    margin-left: calc(var(--gutter) / -2);
  }

  /* cápsula-a na divisão entre hero e próxima seção */
  .capsule-a {
    top: auto;
    left: auto;
    right: 8%;
    bottom: -32px;
    opacity: 1;
  }

  .capsule-b {
    top: auto;
    right: auto;
    left: calc(50% + 108px);
    bottom: 11%;
  }

  .capsule-c {
    top: auto;
    right: auto;
    left: calc(50% - 168px);
    bottom: 17%;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .routine-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .routine-feature {
    min-height: 380px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .story-sticky {
    position: relative;
    top: 0;
    min-height: auto;
    padding: 100px 0 50px;
    text-align: center;
  }

  .story-sticky .eyebrow {
    justify-content: center;
  }

  .story-sticky h2 {
    margin-inline: auto;
  }

  .story-product {
    margin-inline: auto;
  }

  .story-steps {
    padding: 8px 0 60px;
  }

  .story-steps .button {
    display: flex;
    width: fit-content;
    margin-inline: auto;
  }

  .story-intro {
    margin-bottom: 50px;
  }

  .story-card {
    min-height: auto;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .ing-row {
    grid-template-columns: 44px 1fr 1fr 150px;
    gap: 30px;
    padding-inline: 14px;
    margin-inline: -14px;
  }

  .ing-img {
    width: 150px;
    height: 110px;
  }

  .compare-grid,
  .faq-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .how-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-inline: auto;
  }

  .offer-card--featured {
    top: 0;
    order: -1;
  }

  .offer-img img { width: 160px; }
  .offer-card--featured .offer-img img { width: 190px; }

  .checkout-trust {
    flex-wrap: wrap;
  }

  .compare-copy {
    text-align: center;
  }

  .compare-copy .eyebrow {
    justify-content: center;
  }

  /* Comparison — mobile card redesign (no horizontal scroll) */
  .comparison-card {
    overflow-x: visible;
    padding: 8px;
  }

  .comparison-head {
    min-width: unset;
    grid-template-columns: 1fr 1fr;
    padding: 10px 12px 14px;
  }

  .comparison-head > span:first-child {
    display: none;
  }

  .comparison-row {
    min-width: unset;
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    row-gap: 8px;
    column-gap: 8px;
    padding: 14px 12px;
    align-items: center;
  }

  .comparison-row > span:first-child {
    grid-column: 1 / -1;
    font-size: .87rem;
    font-weight: 600;
    color: var(--green-900);
  }

  .comparison-row > strong {
    height: auto;
    padding: 10px 8px;
    font-size: .76rem;
    gap: 5px;
  }

  .comparison-row > span:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 8px;
    font-size: .76rem;
    background: rgba(0, 0, 0, .04);
    border-radius: 12px;
    text-align: center;
    color: #8b9088;
  }

  .comparison-row > span:last-child::before {
    content: "✕";
    display: grid;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    place-items: center;
    color: #b0a8a4;
    background: rgba(0, 0, 0, .06);
    border-radius: 50%;
    font-size: .55rem;
    font-style: normal;
  }

  .faq-aside {
    position: relative;
    top: 0;
    text-align: center;
  }

  .faq-aside .eyebrow {
    justify-content: center;
  }

  .faq-product {
    margin-bottom: 50px;
  }

  .final-copy {
    text-align: center;
  }

  .final-copy .eyebrow,
  .final-trust {
    justify-content: center;
  }

  .final-copy > p:not(.eyebrow) {
    margin-inline: auto;
  }

  .final-product {
    width: 100%;
    height: 320px;
    margin: 0;
  }

  .site-footer {
    padding: 54px 24px 32px;
    text-align: center;
  }

  .footer__back-top {
    margin-top: -29px;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 52px;
    justify-items: center;
  }

  .footer__brand p {
    margin: 24px 0;
  }

  .footer__nav {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__nav div {
    justify-items: center;
  }

  .footer__bottom-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer__developer {
    justify-content: center;
    white-space: normal;
  }

  .footer__watermark {
    font-size: 7rem;
  }
}

@media (max-width: 560px) {
  :root {
    --container: calc(100% - 28px);
    --gutter: 28px;
    --radius-md: 22px;
  }

  body {
    padding-bottom: 0;
  }

  h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  h2 {
    font-size: clamp(1.85rem, 7.6vw, 3rem);
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 16px 0 0;
  }

  .microcopy {
    display: none;
  }

  .hero-text {
    font-size: .96rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .button {
    width: 100%;
    max-width: 100%;
  }

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

  /* cápsulas decorativas no mobile: menores */
  .capsule {
    width: 48px;
    height: 19px;
  }

  .capsule-a {
    top: 57%;
    bottom: auto;
    left: auto;
    right: 5%;
    opacity: 1;
  }

  .capsule-b {
    top: auto;
    left: auto;
    right: 7%;
    bottom: 9%;
    width: 48px;
    height: 19px;
    opacity: 1;
  }

  .capsule-c {
    display: block;
    top: auto;
    right: auto;
    left: 6%;
    bottom: 11%;
    width: 42px;
    height: 17px;
    opacity: .9;
    transform: rotate(-22deg);
  }

  .trust-track {
    padding: 13px 0;
  }

  .trust-card {
    margin-right: 34px;
  }

  .split-heading {
    margin-bottom: 38px;
  }

  .routine-feature {
    min-height: 320px;
  }

  .routine-feature figcaption {
    max-width: 6.6em;
    font-size: clamp(1.55rem, 7.2vw, 2rem);
  }

  .journey-step {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 18px 20px;
  }

  .journey-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .journey-icon svg {
    width: 23px;
    height: 23px;
  }

  .journey-body h3 {
    font-size: 1.2rem;
  }

  .journey-manifesto strong {
    font-size: 1.35rem;
  }

  .story-sticky {
    padding-top: 32px;
  }

  .story-product {
    max-width: 100%;
  }

  .story-card {
    grid-template-columns: 52px 1fr;
    gap: 15px;
  }

  .story-card > span {
    width: 42px;
    height: 42px;
  }

  .story-card h3 {
    font-size: 1.1rem;
  }

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

  .story-wave {
    height: 38px;
  }

  .story-wave-top path {
    d: path("M0,38 C240,52 480,24 720,38 C960,52 1200,24 1440,38 L1440,0 L0,0 Z");
  }

  .story-wave-bottom path {
    d: path("M0,32 C240,18 480,46 720,32 C960,18 1200,46 1440,32 L1440,70 L0,70 Z");
  }

  .ingredients-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .ing-row {
    grid-template-columns: 1fr 128px;
    grid-template-rows: auto auto auto;
    gap: 4px 18px;
    padding: 20px 12px;
    margin-inline: -12px;
    align-items: start;
  }

  .ing-num {
    grid-column: 1;
    grid-row: 1;
    padding-top: 0;
    font-size: .68rem;
  }

  .ing-name {
    grid-column: 1;
    grid-row: 2;
  }

  .ing-name h3 {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
  }

  .ing-desc {
    grid-column: 1;
    grid-row: 3;
    margin-top: 4px;
  }

  .ing-img {
    grid-column: 2;
    grid-row: 1 / 4;
    width: 128px;
    height: 155px;
    align-self: center;
    border-radius: 14px;
  }

  .timeline::before {
    left: 28px;
  }

  .timeline-item {
    min-height: auto;
    margin-bottom: 28px;
    grid-template-columns: 57px 1fr;
    gap: 12px;
  }

  .timeline-number {
    width: 57px;
  }

  .timeline-item > div {
    padding: 22px;
  }

  .timeline-note {
    margin-left: 0;
  }

  .offer-card { padding: 20px 18px; }

  .offer-img img { width: 170px; }
  .offer-card--featured .offer-img img { width: 200px; }

  .checkout-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .comparison-card {
    margin-right: 0;
  }

  .faq-product {
    width: 190px;
    height: 240px;
  }

  .faq-product::after {
    width: 240px;
    height: 240px;
  }

  .faq-list summary {
    font-size: .93rem;
  }

  .final-cta {
    padding-bottom: 75px;
  }

  .final-copy .button {
    width: 100%;
  }

  .final-product {
    height: 280px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links > div:last-child {
    grid-column: span 2;
  }

  .legal > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  /* Mesmo tamanho da landing do LT Gloss (52px/29px). O `bottom` é o único
     valor que diverge de propósito: aqui a barra fixa do kit ocupa o rodapé,
     então o botão sobe para não ficar por cima dela. */
  .whatsapp-btn {
    bottom: 96px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .sticky-mobile-cta {
    position: fixed;
    z-index: 200;
    right: 8px;
    bottom: 8px;
    left: 8px;
    display: flex;
    padding: 9px 9px 9px 16px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(250, 248, 239, .93);
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(18, 51, 28, .23);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(130%);
    transition: opacity .4s, transform .5s var(--ease);
  }

  .sticky-mobile-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .sticky-cta-img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .sticky-cta-info {
    flex: 1;
    min-width: 0;
  }

  .sticky-cta-info strong,
  .sticky-cta-info span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sticky-cta-info strong {
    font-size: .85rem;
    color: var(--green-900);
  }

  .sticky-cta-info span {
    color: var(--gray);
    font-size: .64rem;
    margin-top: 1px;
  }

  .sticky-mobile-cta .button {
    min-height: 44px;
    padding: 0 16px;
    font-size: .75rem;
    flex-shrink: 0;
    gap: 6px;
  }

  .sticky-mobile-cta .button svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 380px) {
  :root {
    --container: calc(100% - 24px);
    --gutter: 24px;
  }

  h1 {
    font-size: clamp(2.4rem, 11.5vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.7rem, 7.4vw, 2.3rem);
  }

  .hero {
    padding: 20px 0 48px;
  }

  .hero-text {
    font-size: .9rem;
  }

  .hero-visual {
    margin-top: 14px;
  }

  .trust-card {
    font-size: .8rem;
  }
}
