:root {
  --green-950: #6b2f12;
  --green-900: #8a3912;
  --green-850: #c24e10;
  --green-800: #ea580c;
  --green-700: #f97316;
  --green-300: #fdba74;
  --green-120: #fff0e6;
  --green-080: #fff8f2;
  --cream: #fffdfb;
  --yellow: #f7b44b;
  --yellow-2: #ffd18a;
  --text: #30180d;
  --muted: #6d4c3d;
  --line: rgba(234, 88, 12, .16);
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(107, 47, 18, .13);
  --shadow-lg: 0 28px 56px rgba(107, 47, 18, .18);
  --radius: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(247, 210, 75, .08), transparent 22%),
    linear-gradient(180deg, #fff9f5 0%, #fff2e8 100%);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 32px)); margin-inline: auto; }
.narrow { width: min(880px, calc(100% - 32px)); margin-inline: auto; }
.center { text-align: center; }
.align-start { align-items: start; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(234,88,12,.10);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}
.brand__logo { height: 86px; width: auto; object-fit: contain; }
.topbar__actions { display: flex; gap: 14px; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  border: 1px solid transparent;
  transition: .25s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  color: #fff;
  box-shadow: 0 16px 30px rgba(249,115,22,.24);
}
.btn--ghost {
  background: rgba(255,255,255,.78);
  border-color: rgba(234,88,12,.18);
  color: var(--green-900);
}
.btn--ghost-dark {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: #fff;
}
.btn--ghost-dark:hover { background: rgba(255,255,255,.12); }
.btn--ghost-light {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
  color: #fff;
}
.btn--whatsapp {
  background: #25D366;
  color: #063219;
  box-shadow: 0 14px 30px rgba(37,211,102,.25);
}
.btn--full { width: 100%; }

.hero {
  padding: 62px 0 46px;
  background:
    linear-gradient(135deg, rgba(77,33,12,.96), rgba(194,78,16,.92)),
    radial-gradient(circle at top left, rgba(247,210,75,.10), transparent 30%);
  color: #fff;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}
.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.6rem, 5.2vw, 4.9rem);
  line-height: .98;
  letter-spacing: -.04em;
}
.hero__lead {
  margin: 0 0 22px;
  font-size: 1.24rem;
  color: rgba(255,255,255,.88);
  max-width: 62ch;
}
.hero__pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.info-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.10);
  color: #fff;
  font-size: .96rem;
  font-weight: 700;
}
.hero__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.point {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  padding: 18px 16px;
  backdrop-filter: blur(8px);
}
.point strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.point span {
  display: block;
  color: rgba(255,255,255,.92);
  font-size: .98rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.small-note { margin: 0; color: rgba(255,255,255,.75); font-size: .98rem; }
.hero__media { display: grid; gap: 18px; }
.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.14);
}
.video-wrap iframe { width: 100%; height: 100%; border: 0; }
.video-wrap--hero { aspect-ratio: 16 / 9; }
.hero__mini-offer {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.hero__mini-offer img {
  width: 100%;
  border-radius: 18px;
}
.hero__mini-offer strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.hero__mini-offer p { margin: 0; color: rgba(255,255,255,.84); }

.old-price, .price-old {
  text-decoration: line-through;
  color: #9ba8a0;
  font-weight: 800;
}
.trust-strip {
  padding: 18px 0;
  border-block: 1px solid rgba(234,88,12,.12);
  background: rgba(255,255,255,.78);
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  color: var(--muted);
  font-size: 1rem;
}
.trust-strip strong { color: var(--green-900); }

.section { padding: 88px 0; }
.section--soft { background: linear-gradient(180deg, var(--green-080), #edf8f0); }
.section--panel { background: rgba(255,255,255,.76); }
.section--dark-accent {
  background: linear-gradient(135deg, #6b2f12, #ea580c);
  color: #fff;
}
.section--bonus {
  background: linear-gradient(135deg, #6b2f12, #c24e10);
  color: #fff;
}
.section-heading { margin-bottom: 28px; }
.section-heading--compact { margin-bottom: 22px; }
.section-heading h1,
.section-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -.035em;
}
.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.section-heading--light p,
.section-heading--light h2 { color: #fff; }
.section-heading--light p { color: rgba(255,255,255,.84); }

.two-col,
.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.benefits-layout { align-items: start; }

.img-card {
  padding: 12px;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.img-card--plain { padding: 0; overflow: hidden; }
.img-card img { border-radius: 20px; }
.img-card--shadow-lg { box-shadow: var(--shadow-lg); }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit-grid--two { grid-template-columns: repeat(2, 1fr); }
.benefit-card,
.offer-card,
.note-box,
.cta-card,
.advisor-card,
.check-item,
.feature-item,
.step,
.faq-item,
.plan-card,
.day-card,
.legal-card {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.benefit-card { padding: 22px; }
.benefit-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-120);
  color: var(--green-900);
  font-weight: 900;
  margin-bottom: 12px;
}
.benefit-card p { margin: 0; color: var(--muted); font-size: 1.02rem; }

.ingredient-list,
.offer-list,
.footer__links {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}
.ingredient-list--large li,
.offer-list li,
.footer__links li { color: var(--muted); font-size: 1.02rem; }
.note-box {
  margin-top: 18px;
  padding: 18px 20px;
  background: #fffde9;
  border-color: rgba(247,210,75,.45);
  color: #5d5424;
}

.steps { display: grid; gap: 14px; }
.steps--dark .step {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.12);
  color: #fff;
}
.steps--dark .step p { color: rgba(255,255,255,.78); }
.step {
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}
.step span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  color: #fff;
  font-weight: 900;
}
.step strong { font-size: 1.06rem; }
.step p { margin: 6px 0 0; color: var(--muted); }

.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.offer-card {
  position: relative;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(239,248,241,.96));
}
.offer-card--featured {
  border: 2px solid var(--green-700);
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(17,136,78,.18);
}
.tag {
  position: absolute;
  right: 18px;
  top: 18px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  color: #4d4000;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 900;
}
.offer-card__image { width: 100%; max-width: 250px; margin: 0 auto 16px; }
.offer-card h3 { margin: 0 0 4px; font-size: 1.7rem; }
.offer-card__highlight { margin: 0 0 14px; color: var(--muted); font-size: 1rem; }
.price-box { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.price-box--stack { flex-direction: column; align-items: flex-start; gap: 4px; margin-bottom: 18px; }
.label-price {
  display: inline-block;
  font-size: .88rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.label-price--offer { color: var(--green-900); }
.price-new {
  font-size: clamp(2.1rem, 4vw, 2.7rem);
  line-height: 1;
  font-weight: 900;
  color: var(--green-850);
}

.bonus-box { display: grid; gap: 14px; margin: 22px 0; }
.bonus-box--dark .bonus-item {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
}
.bonus-item {
  padding: 15px 18px;
  border-radius: 18px;
  font-weight: 700;
}

.feature-list,
.feature-list--mini,
.faq-list { display: grid; gap: 14px; }
.feature-list--mini .feature-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  padding: 16px 18px;
}
.feature-item strong { color: var(--green-900); }
.feature-item span { color: var(--muted); }

.advisor-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 30px;
  padding: 24px;
  align-items: center;
}
.advisor-card__media img:first-child {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.advisor-card__media--stacked { display: grid; gap: 18px; }
.advisor-logo { max-width: 260px; }
.advisor-logo--centered { margin: 0 auto; max-width: 290px; }
.advisor-card__content p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0 0 16px;
}

.faq-item { overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 20px 22px;
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 800;
  font-size: 1.06rem;
  cursor: pointer;
}
.faq-toggle { font-size: 1.4rem; color: var(--green-850); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 22px;
}
.faq-answer p { margin: 0 0 20px; color: var(--muted); }
.faq-item.is-open .faq-answer { max-height: 260px; }
.faq-item.is-open .faq-toggle { transform: rotate(45deg); }

.cta-card {
  padding: 28px 30px;
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.cta-card h2 { margin: 0 0 8px; font-size: clamp(1.9rem, 3vw, 2.7rem); }
.cta-card p { margin: 0; color: rgba(255,255,255,.84); font-size: 1.05rem; }
.cta-card__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-mini { padding-top: 46px; }
.plan-card, .day-card, .legal-card { padding: 24px; margin-bottom: 18px; }
.day-card h3, .plan-card h2 { margin-top: 0; }
.mt-24 { margin-top: 24px; }

.footer {
  background: linear-gradient(135deg, #4a1f0d 0%, #8a3912 45%, #c24e10 100%);
  color: #fffaf5;
  padding: 56px 0 24px;
}
.footer__grid { display: grid; grid-template-columns: 1.1fr .9fr 1fr; gap: 32px; }
.footer__logo {
  max-width: 190px;
  height: auto;
  margin-bottom: 20px;
}
.footer__logo--white { max-width: 210px; }
.footer__text { color: rgba(255,250,245,.86); }
.footer h4 { margin-top: 0; margin-bottom: 10px; font-size: 1.12rem; }
.footer__links { list-style: none; padding-left: 0; }
.footer__links a { color: rgba(255,250,245,.88); }
.footer__bottom {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,.10);
  font-size: .95rem;
  color: rgba(255,250,245,.74);
}
.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #25D366;
  color: #05361a;
  border-radius: 999px;
  padding: 15px 20px;
  box-shadow: 0 14px 28px rgba(37,211,102,.35);
  z-index: 45;
  font-weight: 900;
}

@media (max-width: 1140px) {
  .hero__grid,
  .two-col,
  .benefits-layout,
  .offers-grid,
  .footer__grid,
  .advisor-card,
  .trust-strip__grid { grid-template-columns: 1fr; }

  .hero__points,
  .benefit-grid--two { grid-template-columns: 1fr; }

  .offer-card--featured { transform: none; }
  .hero__mini-offer { grid-template-columns: 90px 1fr; }
}

@media (max-width: 780px) {
  .section { padding: 68px 0; }
  .topbar__inner { flex-wrap: wrap; }
  .brand__logo { height: 68px; }
  .topbar__actions { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 40px; }
  .hero__actions,
  .cta-card__actions { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .benefit-grid { grid-template-columns: 1fr; }
  .faq-question { font-size: 1rem; }
  .advisor-card { padding: 18px; }
  .floating-wa { left: 16px; right: 16px; display: flex; justify-content: center; }
}

@media (max-width: 560px) {
  .container, .narrow { width: min(var(--container), calc(100% - 22px)); }
  .brand__logo { height: 60px; }
  .topbar__actions { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.3rem; }
  .hero__lead { font-size: 1.08rem; }
  .hero__mini-offer { grid-template-columns: 1fr; text-align: center; }
  .price-new { font-size: 2.2rem; }
  .cta-card { padding: 24px 20px; }
}


.advisor-name {
  margin-top: 14px;
  font-size: 1.28rem;
  font-weight: 900;
  color: var(--green-900);
  text-align: center;
  letter-spacing: -0.02em;
}

.advisor-card__media--stacked {
  align-items: center;
}
