:root {
  --rose: #C96F86;
  --cream: #FFF4EA;
  --chocolate: #5A3825;
  --caramel: #D99A4E;
  --mint: #A7D7C5;
  --warm: #FFFBF7;
  --text: #3B3430;
  --muted: #76665D;
  --line: #EAD9CE;
  --shadow: 0 18px 50px rgba(90, 56, 37, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 0 28px;
  background: rgba(255, 251, 247, .86);
  border-bottom: 1px solid rgba(90, 56, 37, .1);
  backdrop-filter: blur(18px);
}

.brand {
  color: var(--chocolate);
  font-weight: 900;
  text-decoration: none;
}

.topbar nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 700;
}

.topbar nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 90svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 112px 0 64px;
  background-image: url("assets/hero-precificadoce.png");
  background-size: cover;
  background-position: 62% center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 244, 234, .99) 0%, rgba(255, 244, 234, .96) 48%, rgba(255, 244, 234, .6) 76%, rgba(255, 244, 234, .42) 100%),
    linear-gradient(180deg, rgba(255, 251, 247, .34), rgba(255, 251, 247, .92));
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(690px, calc(100% - 32px));
  margin-left: max(16px, calc((100vw - 1120px) / 2));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--chocolate);
  line-height: 1.08;
}

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6.7rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.4vw, 4.4rem);
}

h3 {
  font-size: 1.35rem;
}

.hero__lead {
  max-width: 620px;
  color: var(--text);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
}

.hero__bullets {
  display: grid;
  gap: 10px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.hero__bullets li,
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 700;
}

.hero__bullets li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .43em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px rgba(90, 56, 37, .14);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button--primary {
  color: #fff;
  background: var(--rose);
  box-shadow: 0 14px 30px rgba(201, 111, 134, .34);
}

.price {
  color: var(--muted);
  font-weight: 800;
}

.price strong {
  display: inline-block;
  color: var(--chocolate);
  font-size: 1.6rem;
}

.checkout-note {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .93rem;
}

.section {
  padding: 88px 0;
}

.section:nth-of-type(even) {
  background: var(--cream);
}

.two-cols {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: start;
}

.copy-stack {
  color: var(--muted);
  font-size: 1.12rem;
}

.callout {
  margin-top: 26px;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  border-left: 6px solid var(--rose);
  box-shadow: var(--shadow);
}

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

.callout strong {
  color: var(--chocolate);
  font-size: 1.2rem;
}

.callout--caramel {
  border-left-color: var(--caramel);
  background: #FFF8EF;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.12rem;
}

.section-intro {
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-grid,
.audience-grid,
.before-after,
.screen-grid,
.testimonial-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.before-after {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid article,
.audience-grid article,
.before-after article,
.included-list div,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(90, 56, 37, .06);
}

.feature-grid strong,
.audience-grid strong,
.before-after h3,
.included-list strong,
.screen-grid strong,
.offer-main-visual strong {
  display: block;
  color: var(--chocolate);
}

.feature-grid span,
.audience-grid p,
.before-after li,
.included-list span,
.screen-grid span,
details p {
  color: var(--muted);
}

.audience-grid strong {
  font-size: 1.18rem;
}

.audience-grid p {
  margin: 10px 0 0;
}

.before-after h3 {
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.before-after ul {
  margin: 0;
  padding-left: 20px;
}

.before-after li + li {
  margin-top: 9px;
}

.wide-visual {
  margin: 34px 0 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.inside-mobile {
  display: none;
}

.offer-layout {
  display: grid;
  grid-template-columns: 1fr minmax(320px, .86fr);
  gap: 48px;
  align-items: center;
}

.routine-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 46px;
  align-items: center;
}

.routine-layout figure {
  margin: 0;
}

.routine-layout img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.included-list {
  display: grid;
  gap: 12px;
}

.offer-main-visual {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: var(--shadow);
}

.promo-strip {
  width: 100%;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  object-fit: cover;
}

.offer-main-visual__hero {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--warm);
}

.offer-main-visual__hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.offer-main-visual__hero strong,
.offer-main-visual__hero span {
  display: block;
  padding: 0 18px;
}

.offer-main-visual__hero strong {
  padding-top: 16px;
  color: var(--chocolate);
  font-size: 1.8rem;
}

.offer-main-visual__hero span {
  padding-bottom: 18px;
  color: var(--rose);
  font-weight: 900;
}

.offer-main-visual__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.offer-main-visual__items article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  padding: 16px;
}

.offer-main-visual__items strong,
.offer-main-visual__items span {
  display: block;
}

.offer-main-visual__items strong {
  color: var(--chocolate);
}

.offer-main-visual__items span {
  color: var(--muted);
}

.offer-main-visual p {
  margin: 16px 0 0;
  border-radius: 8px;
  background: var(--chocolate);
  color: #fff;
  padding: 16px;
  font-weight: 900;
}

.screen-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.screen-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(90, 56, 37, .06);
}

.screen-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.screen-grid strong,
.screen-grid span {
  padding: 0 16px;
}

.screen-grid strong {
  padding-top: 14px;
}

.screen-grid span {
  display: block;
  padding-bottom: 16px;
  font-size: .94rem;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.1rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 130px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(90, 56, 37, .06);
}

.steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--rose);
  font-weight: 900;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-grid img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.section.final-offer {
  background: var(--chocolate);
  color: #fff;
}

.offer-card {
  text-align: center;
}

.offer-card h2,
.offer-card .eyebrow {
  color: #fff;
}

.offer-card p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF4EA;
  font-size: 1.15rem;
}

.offer-price {
  margin: 26px 0;
  color: #fff;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1;
}

.offer-card .checkout-note {
  color: rgba(255, 244, 234, .82);
}

.checkout-note--subtle {
  max-width: 620px;
  opacity: .78;
  font-size: .86rem;
}

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

summary {
  color: var(--chocolate);
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 14px 0 0;
}

.footer {
  padding: 28px 0;
  background: var(--cream);
  color: var(--muted);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer strong {
  color: var(--chocolate);
}

.toast {
  position: fixed;
  z-index: 40;
  left: 50%;
  bottom: 24px;
  width: min(520px, calc(100% - 32px));
  transform: translateX(-50%);
  border: 1px solid rgba(90, 56, 37, .18);
  border-radius: 8px;
  background: var(--chocolate);
  color: #fff;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .hero {
    background-position: 70% center;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(255, 244, 234, .99) 0%, rgba(255, 244, 234, .94) 58%, rgba(255, 244, 234, .98) 100%),
      linear-gradient(90deg, rgba(255, 244, 234, .96), rgba(255, 244, 234, .74));
  }

  .hero__content {
    margin: 0 auto;
  }

  .two-cols,
  .offer-layout,
  .routine-layout,
  .feature-grid,
  .audience-grid,
  .before-after,
  .screen-grid,
  .steps,
  .testimonial-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .topbar {
    min-height: 62px;
    padding: 0 16px;
  }

  .topbar nav {
    gap: 10px;
    font-size: .82rem;
  }

  .hero {
    min-height: 92svh;
    padding: 92px 0 42px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .two-cols,
  .offer-layout,
  .routine-layout,
  .feature-grid,
  .audience-grid,
  .before-after,
  .screen-grid,
  .steps,
  .testimonial-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .wide-visual--desktop {
    display: none;
  }

  .inside-mobile {
    display: block;
    margin-top: 28px;
  }

  .inside-mobile h3 {
    margin-bottom: 8px;
    font-size: 1.55rem;
  }

  .inside-mobile p {
    color: var(--muted);
  }

  .inside-mobile__grid {
    display: grid;
    gap: 14px;
  }

  .inside-mobile__grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 14px;
    box-shadow: 0 10px 28px rgba(90, 56, 37, .06);
  }

  .inside-mobile__grid img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    border: 1px solid var(--line);
    background: #fff;
  }

  .inside-mobile__grid strong {
    display: block;
    margin-top: 10px;
    color: var(--chocolate);
    font-size: 1.1rem;
  }

  .screen-grid img {
    aspect-ratio: auto;
    height: auto;
  }

  .footer__inner {
    flex-direction: column;
  }
}
