/* ===================================================================
   Segredos do Pudim Perfeito Gourmet — Landing Page
   Direção visual: CONFEITARIA BOUTIQUE PREMIUM
   Clara · leve · feminina · sofisticada · Mobile First
   =================================================================== */

/* ----------------------- 1. VARIÁVEIS ----------------------------- */
:root {
  /* Paleta — clara e delicada */
  --marfim:     #FAF6F1; /* fundo principal */
  --champagne:  #F2E8DD; /* fundo secundário / bandas */
  --blush:      #E6CFCB; /* rosa blush premium */
  --rose:       #D8A7A0; /* rosa queimado elegante */
  --chocolate:  #4A3129; /* SÓ títulos, ícones e detalhes */
  --cta:        #C86B4A; /* terracota sofisticado */
  --cta-hover:  #B65A3B;
  --cta-text:   #FFFFFF;

  /* Texto */
  --text:       #5C4640; /* corpo de texto (chocolate suavizado) */
  --text-soft:  #8A736C; /* texto auxiliar */

  /* Derivadas */
  --white:      #FFFFFF;
  --line:       rgba(74, 49, 41, 0.10);
  --line-rose:  rgba(216, 167, 160, 0.45);

  /* Sombras delicadas e quentes */
  --shadow-sm:  0 6px 24px rgba(74, 49, 41, 0.05);
  --shadow-md:  0 18px 46px rgba(74, 49, 41, 0.08);
  --shadow-lg:  0 34px 84px rgba(74, 49, 41, 0.12);
  --shadow-rose: 0 22px 50px rgba(200, 107, 74, 0.18);

  /* Tipografia */
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --maxw-narrow: 760px;
  --radius: 24px;
  --radius-sm: 16px;
  --space: clamp(4.5rem, 10vw, 9rem); /* respiração generosa */
}

/* ----------------------- 2. RESET --------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
  color: var(--text);
  background: var(--marfim);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--chocolate);
  line-height: 1.16;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ----------------------- 3. UTILITÁRIOS --------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.4rem, 5vw, 2.5rem);
}
.container--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: var(--space); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 1.2rem;
}

.section__head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
}
.section__title {
  font-size: clamp(2rem, 5.6vw, 3rem);
  font-weight: 500;
}
.section__lead {
  margin-top: 1.25rem;
  font-size: 1.08rem;
  color: var(--text-soft);
}

.strike {
  text-decoration: line-through;
  opacity: 0.55;
  font-weight: 400;
}

/* ----------------------- 4. BOTÕES -------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
  border-radius: 999px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.btn--primary {
  background: var(--cta);
  color: var(--cta-text);
  box-shadow: 0 12px 28px rgba(200, 107, 74, 0.28);
}
.btn--primary:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(200, 107, 74, 0.34);
}
.btn--primary:active { transform: translateY(0) scale(0.99); }

/* feedback de clique (microinteração discreta) */
.btn--pulse { animation: btnPulse 0.4s ease; }
@keyframes btnPulse {
  0%   { transform: scale(1); }
  45%  { transform: scale(0.97); }
  100% { transform: scale(1); }
}

.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.02rem; }
.btn--xl {
  padding: 1.3rem 2.4rem;
  font-size: 1.12rem;
  width: 100%;
  max-width: 460px;
}

/* ----------------------- 5. HERO ---------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(130% 90% at 90% 0%, var(--champagne) 0%, var(--marfim) 55%);
  padding-block: clamp(2.5rem, 8vw, 4rem) clamp(3.5rem, 9vw, 5.5rem);
}

/* Formas orgânicas suaves (creme / calda) */
.hero__shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.55;
}
.blob--1 {
  width: 360px; height: 360px;
  top: -90px; right: -80px;
  background: radial-gradient(circle, var(--blush), transparent 70%);
}
.blob--2 {
  width: 300px; height: 300px;
  bottom: -120px; left: -100px;
  background: radial-gradient(circle, var(--champagne), transparent 70%);
  opacity: 0.8;
}
.blob--3 {
  width: 220px; height: 220px;
  top: 35%; left: 45%;
  background: radial-gradient(circle, rgba(216, 167, 160, 0.5), transparent 70%);
  opacity: 0.4;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 6vw, 3rem);
}

.hero__content { display: flex; flex-direction: column; }
.hero__title {
  font-size: clamp(2.1rem, 7vw, 3.6rem);
  font-weight: 500;
  max-width: 16ch;
  margin-bottom: 1.3rem;
}
.hero__subtitle {
  font-size: clamp(1.02rem, 2.4vw, 1.18rem);
  color: var(--text);
  max-width: 50ch;
}
.hero__note {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-soft);
  max-width: 50ch;
}
.hero__benefits {
  margin-top: 1.9rem;
  display: grid;
  gap: 0.75rem;
}
.hero__benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text);
}
.hero__benefits .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blush);
  color: var(--chocolate);
  font-size: 0.78rem;
  font-weight: 700;
}
.hero__content .btn { margin-top: 2.2rem; align-self: flex-start; }

/* Mídia — o pudim como protagonista */
.hero__media {
  position: relative;
  order: -1; /* no mobile, a foto aparece primeiro */
  display: flex;
  justify-content: center;
}
.hero__media-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  background: var(--champagne);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.hero__media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media-glow {
  position: absolute;
  z-index: 0;
  width: 78%;
  height: 78%;
  bottom: -8%;
  right: -4%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose), transparent 68%);
  opacity: 0.45;
  filter: blur(20px);
}

/* ----------------------- 6. PLACEHOLDER DE IMAGEM ----------------- */
.img-placeholder { position: relative; background: var(--champagne); }
.img-placeholder::after {
  content: attr(data-ph-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-soft);
  text-align: center;
  padding: 1rem;
  background:
    repeating-linear-gradient(45deg,
      transparent, transparent 18px,
      rgba(216, 167, 160, 0.12) 18px,
      rgba(216, 167, 160, 0.12) 36px);
}

/* ----------------------- 7. SEÇÃO 2 — DORES ----------------------- */
.section--identify { background: var(--marfim); }
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}
.pain-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pain-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: var(--champagne);
  font-size: 1.6rem;
  margin-bottom: 1.1rem;
}
.pain-card h3 { font-size: 1.28rem; margin-bottom: 0.5rem; }
.pain-card p { font-size: 0.98rem; color: var(--text-soft); }

/* ----------------------- 8. SEÇÃO 3 — CRENÇA --------------------- */
.section--belief { background: var(--champagne); }
.belief__lead {
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--chocolate);
  margin-bottom: 1.4rem;
}
.belief__lead strong { color: var(--cta); font-weight: 600; }
.belief__text {
  text-align: center;
  font-size: 1.08rem;
  color: var(--text);
  max-width: 60ch;
  margin: 0 auto 3rem;
}
.belief__text em { color: var(--cta); font-style: italic; }

.belief__list { display: grid; gap: 1.1rem; margin-bottom: 3rem; }
.belief__item {
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.belief__num {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--rose);
  line-height: 1;
  flex-shrink: 0;
}
.belief__item h3 { font-size: 1.18rem; margin-bottom: 0.25rem; }
.belief__item p { font-size: 0.95rem; color: var(--text-soft); }
.belief__close {
  text-align: center;
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.25rem, 3.4vw, 1.6rem);
  color: var(--chocolate);
  max-width: 46ch;
  margin-inline: auto;
}

/* ----------------------- 9. SEÇÃO 4 — RESULTADOS (VITRINE) ------- */
.section--results { background: var(--marfim); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}
.results-grid__item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--champagne);
  box-shadow: var(--shadow-sm);
  border: 5px solid var(--white);
  aspect-ratio: 1 / 1;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.results-grid__item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.results-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
/* hover extremamente discreto */
.results-grid__item:hover img { transform: scale(1.03); }
.results-grid__item--wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}

/* ----------------------- 10. SEÇÃO 5 — MÉTODO -------------------- */
.section--method { background: var(--champagne); }
.method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}
.method-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.method-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.method-card__step {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cta);
  padding-bottom: 0.7rem;
  margin-bottom: 0.7rem;
  border-bottom: 2px solid var(--blush);
}
.method-card h3 { font-size: 1.32rem; margin-bottom: 0.5rem; }
.method-card p { font-size: 0.98rem; color: var(--text-soft); }

/* ----------------------- 11. SEÇÃO 6 — TRANSFORMAÇÃO ------------- */
.section--transform {
  background:
    linear-gradient(180deg, var(--marfim) 0%, var(--blush) 100%);
}
.transform-list {
  display: grid;
  gap: 1.4rem;
  max-width: 56ch;
  margin-inline: auto;
}
.transform-item {
  position: relative;
  padding: 1.4rem 1.6rem 1.4rem 3.4rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--white);
  border-radius: var(--radius-sm);
  font-size: clamp(1.02rem, 2.4vw, 1.18rem);
  line-height: 1.6;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.transform-item::before {
  content: "🍮";
  position: absolute;
  left: 1.3rem;
  top: 1.35rem;
  font-size: 1.1rem;
}
.transform-item strong { color: var(--cta); font-weight: 600; }

/* ----------------------- 12. SEÇÃO 7 — GISELLE ------------------- */
.section--about { background: var(--marfim); }
.about__wrap {
  display: grid;
  gap: 2.4rem;
  align-items: center;
}
.about__photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--white);
  aspect-ratio: 4 / 5;
  background: var(--champagne);
  max-width: 400px;
  margin-inline: auto;
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__content p { margin-bottom: 1.1rem; color: var(--text); }
.about__sign {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--cta);
}

/* ----------------------- 13. SEÇÃO 8 — DEPOIMENTOS -------------- */
.section--reviews { background: var(--champagne); }
.reviews { position: relative; }
.reviews__track {
  display: flex;
  gap: 1.3rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
  scroll-padding-left: 1px;
}
.reviews__track::-webkit-scrollbar { display: none; }

/* Cartão de depoimento — elegante, estilo conversa */
.wa {
  scroll-snap-align: center;
  flex: 0 0 86%;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--line);
}
.wa__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: linear-gradient(120deg, var(--rose), var(--blush));
  padding: 1rem 1.2rem;
  color: var(--chocolate);
}
.wa__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--cta);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.wa__info { display: flex; flex-direction: column; line-height: 1.25; }
.wa__info strong { font-size: 0.98rem; }
.wa__info span { font-size: 0.74rem; opacity: 0.75; }

.wa__body {
  background: var(--marfim);
  padding: 1.3rem 1.2rem 1.5rem;
  display: grid;
  gap: 0.7rem;
  min-height: 180px;
  align-content: start;
}
.wa__bubble {
  position: relative;
  align-self: flex-start;
  background: var(--white);
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.55;
  padding: 0.75rem 0.95rem 1.35rem;
  border-radius: 14px;
  border-top-left-radius: 4px;
  box-shadow: var(--shadow-sm);
  max-width: 94%;
}
.wa__time {
  position: absolute;
  right: 0.7rem;
  bottom: 0.4rem;
  font-size: 0.64rem;
  color: var(--rose);
}

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.6rem;
}
.reviews__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blush);
  transition: width 0.3s ease, background 0.3s ease;
}
.reviews__dots button.is-active {
  width: 24px;
  border-radius: 4px;
  background: var(--cta);
}

/* ----------------------- 14. SEÇÃO 9 — STACK -------------------- */
.section--stack { background: var(--marfim); }
.stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}
.stack-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.stack-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.stack-card__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}
.stack-card__top h3 { font-size: 1.24rem; }
.stack-card--bonus .stack-card__top { margin-bottom: 0; }
.stack-card__value {
  font-family: var(--font-head);
  font-size: 1.18rem;
  color: var(--rose);
  white-space: nowrap;
}
.stack-card__list { display: grid; gap: 0.6rem; }
.stack-card__list li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 0.98rem;
  color: var(--text);
}
.stack-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cta);
  font-weight: 700;
}
.stack-card--bonus {
  border: 1px dashed var(--rose);
  background: linear-gradient(180deg, var(--white), #fdf6f2);
}
.stack-card__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cta);
  background: var(--blush);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.stack__total {
  margin-top: 2rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line-rose);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: grid;
  gap: 0.3rem;
  box-shadow: var(--shadow-sm);
}
.stack__total span {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--text-soft);
}
.stack__total strong {
  font-family: var(--font-head);
  font-size: 2.3rem;
  color: var(--chocolate);
}

/* ----------------------- 15. SEÇÃO 10 — OFERTA (DESTAQUE) ------- */
/* Única seção com maior contraste — champagne + blush + rosa queimado */
.section--offer {
  background:
    radial-gradient(120% 100% at 50% 0%, var(--blush) 0%, var(--champagne) 55%, var(--marfim) 100%);
}
.offer {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-rose);
  border-radius: 30px;
  padding: clamp(2.2rem, 6vw, 3.8rem) clamp(1.5rem, 5vw, 3.2rem);
  text-align: center;
  box-shadow: var(--shadow-rose);
  overflow: hidden;
}
.offer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--rose), var(--cta), var(--rose));
}
.offer__eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cta);
  background: var(--blush);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.offer__title {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 500;
  margin-bottom: 2rem;
}
.offer__pricing { margin-bottom: 2.2rem; }
.offer__from { font-size: 1.05rem; color: var(--text-soft); }
.offer__today {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.offer__price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(4.2rem, 16vw, 6.2rem);
  color: var(--cta);
  line-height: 1;
  margin: 0.3rem 0 0.6rem;
}
.offer__currency {
  font-size: 0.38em;
  vertical-align: super;
  margin-right: 0.1em;
}
.offer__terms { font-size: 0.92rem; color: var(--text-soft); }
.offer__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.8rem;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--text);
}

/* ----------------------- 16. SEÇÃO 11 — GARANTIA ---------------- */
.section--guarantee { background: var(--marfim); }
.guarantee {
  display: grid;
  gap: 1.8rem;
  justify-items: center;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(2.2rem, 6vw, 3.2rem);
  box-shadow: var(--shadow-sm);
}
.guarantee__seal {
  display: grid;
  place-content: center;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, var(--white), var(--blush));
  border: 4px solid var(--rose);
  box-shadow: var(--shadow-md);
}
.guarantee__days {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--cta);
  line-height: 0.9;
}
.guarantee__label {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chocolate);
}
.guarantee__text h2 { margin-bottom: 0.9rem; font-size: clamp(1.55rem, 4.5vw, 2.1rem); }
.guarantee__text p { max-width: 56ch; margin-inline: auto; color: var(--text); }

/* ----------------------- 17. SEÇÃO 12 — FAQ --------------------- */
.section--faq { background: var(--champagne); }
.faq { display: grid; gap: 0.9rem; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq__item.is-open { box-shadow: var(--shadow-sm); }
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.35rem 1.5rem;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--chocolate);
}
.faq__icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--cta);
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.faq__icon::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq__icon::after  { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.faq__item.is-open .faq__icon::after { transform: translateX(-50%) scaleY(0); }

.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq__answer p { padding: 0 1.5rem 1.4rem; font-size: 0.98rem; color: var(--text-soft); }

/* ----------------------- 18. SEÇÃO FINAL ------------------------ */
.section--final {
  background:
    linear-gradient(180deg, var(--marfim) 0%, var(--champagne) 100%);
  text-align: center;
}
.final__title {
  font-size: clamp(1.85rem, 5.5vw, 2.9rem);
  font-weight: 500;
  max-width: 20ch;
  margin: 0 auto 1.5rem;
}
.final__title span {
  display: block;
  color: var(--cta);
  font-size: 0.72em;
  font-weight: 500;
  margin-top: 0.7rem;
}
.final__text {
  max-width: 52ch;
  margin: 0 auto 2.4rem;
  font-size: 1.05rem;
  color: var(--text);
}
.final__price { display: grid; gap: 0.25rem; margin-bottom: 2.2rem; }
.final__price .strike { font-size: 1.1rem; color: var(--text-soft); }
.final__price strong {
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 12vw, 4.6rem);
  color: var(--cta);
  line-height: 1;
}
.final__price small {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ----------------------- 19. RODAPÉ ----------------------------- */
.footer {
  background: var(--champagne);
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  text-align: center;
  padding-block: 2.8rem;
}
.footer__brand {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--chocolate);
  margin-bottom: 0.6rem;
}
.footer__legal { font-size: 0.82rem; max-width: 60ch; margin-inline: auto; line-height: 1.6; }

/* ----------------------- 20. STICKY CTA (mobile) ---------------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1rem;
  background: rgba(250, 246, 241, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-rose);
  box-shadow: 0 -8px 24px rgba(74, 49, 41, 0.10);
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__info { display: flex; flex-direction: column; line-height: 1.1; }
.sticky-cta__from {
  font-size: 0.78rem;
  text-decoration: line-through;
  color: var(--text-soft);
}
.sticky-cta__price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cta);
}
.sticky-cta .btn { flex: 1; padding: 0.85rem 1rem; font-size: 0.95rem; }

/* ----------------------- 21. ANIMAÇÕES DE REVEAL ---------------- */
/* Reveal suave e discreto */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =================================================================
   22. BREAKPOINTS — adaptação progressiva
   ================================================================= */

/* Tablet pequeno */
@media (min-width: 600px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .stack { grid-template-columns: repeat(2, 1fr); }
  .wa { flex: 0 0 58%; }
}

/* Tablet / Notebook */
@media (min-width: 900px) {
  body { font-size: 18px; }

  /* Hero em duas colunas: texto à esquerda, foto à direita */
  .hero { padding-block: clamp(3.5rem, 7vw, 6rem); }
  .hero__grid {
    flex-direction: row;
    align-items: center;
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }
  .hero__content { flex: 1 1 52%; }
  .hero__media { order: 0; flex: 1 1 48%; }
  .hero__media-frame { max-width: 500px; margin-left: auto; }

  .pain-grid { grid-template-columns: repeat(3, 1fr); }
  .method-grid { grid-template-columns: repeat(3, 1fr); }

  .results-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3rem;
  }
  .results-grid__item--wide { grid-column: span 2; aspect-ratio: 1 / 1; }

  .belief__list { grid-template-columns: repeat(2, 1fr); }
  .belief__item:last-child { grid-column: 1 / -1; }

  .about__wrap { grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; }
  .about__photo { max-width: none; }

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

  /* Depoimentos viram grid no desktop */
  .reviews__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    gap: 1.4rem;
  }
  .wa { flex: none; }
  .reviews__dots { display: none; }

  .sticky-cta { display: none; }
}

/* Desktop largo */
@media (min-width: 1200px) {
  .results-grid__item--wide { grid-column: span 2; aspect-ratio: 16 / 11; }
}

/* Monitores ultrawide */
@media (min-width: 1600px) {
  :root { --maxw: 1280px; }
}

/* ----------------------- 23. ACESSIBILIDADE --------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 3px;
  border-radius: 4px;
}
