/* =============================================
   COMBO MULHER SÁBIA — Gabriela Almeida
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Paleta */
  --bg:           #FEFBF8;
  --rosinha:      #F0E9E5;
  --wine:         #4D0C12;
  --wine-dark:    #30050E;
  --gold:         #E8D5B1;
  --green:        #2A6B3C;
  --green-hover:  #1F5230;

  /* Texto */
  --text:         #1A0A0D;
  --text-mid:     #5C3840;

  /* Sobre fundo escuro */
  --on-dark:      #FEFBF8;
  --on-dark-mid:  rgba(254,251,248,.85);
  --on-dark-dim:  rgba(254,251,248,.55);
  --on-dark-faint:rgba(254,251,248,.35);

  /* Tipografia */
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;

  /* Espaçamento */
  --gap: 80px;
  --r:   6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; }

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
}

.section        { padding: var(--gap) 0; }
.section--bg    { background: var(--bg); }
.section--rosinha { background: var(--rosinha); }
.section--dark  { background: var(--wine-dark); }

/* Divisor decorativo entre seções claras */
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: .30;
  margin: 0 auto calc(var(--gap) * -0.5);
  display: block;
}

/* ---- TIPOGRAFIA ---- */
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 20px;
}
.eyebrow--gold   { color: var(--gold); }
.eyebrow--center { text-align: center; }

.headline {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 28px;
}
.headline--h1 { font-size: clamp(2.4rem, 5vw, 3.5rem); color: var(--text); }
.headline--h2 { font-size: clamp(2rem, 3.8vw, 2.6rem); color: var(--text); }
.headline--h3 { font-size: 1.5rem; font-weight: 600; color: var(--text); }
.headline--light  { color: var(--on-dark); }
.headline--center { text-align: center; }

/* ---- BOTÃO ---- */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  border-radius: var(--r);
  transition: background .2s, box-shadow .2s, transform .1s;
  text-align: center;
  text-decoration: none;
  white-space: normal;
}
.btn:active { transform: scale(.98); }

.btn--buy {
  background: var(--green);
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1;
  width: fit-content;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  box-shadow: 0 4px 20px rgba(42,107,60,.30);
}
.btn--buy:hover {
  background: var(--green-hover);
  box-shadow: 0 6px 28px rgba(42,107,60,.40);
}
.btn--full {
  width: 100%;
  align-self: stretch;
}

/* Linha de segurança abaixo do botão */
.secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-mid);
  opacity: .60;
}
.secure i { font-size: 11px; }
.secure--light { color: rgba(254,251,248,.60); opacity: 1; }

/* ---- STICKY BAR ---- */
.sticky-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(77,12,18,.97);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 10px 24px;
  transform: translateY(-100%);
  transition: transform .3s ease;
}
.sticky-bar.visible { transform: translateY(0); }

.sticky-bar__urgency {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(254,251,248,.70);
  text-align: center;
}

.sticky-bar__link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 10px;
  transition: color .15s;
}
.sticky-bar__link:hover { color: #fff; }

/* =============================================
   S1 — HERO
   ============================================= */
.hero {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 0;
  min-height: 760px;
  overflow: hidden;
  background: #FEFBF8;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 100px 48px 100px clamp(40px, 6vw, 80px);
  background: #FEFBF8;
}

/* Badge pill acima do título */
.hero__badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--wine);
  border: 1px solid rgba(77,12,18,.28);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
  align-self: flex-start;
}

.hero__headline {
  font-family: var(--serif);
  font-size: clamp(48px, 5.2vw, 70px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 28px;
}
.hero__headline em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--wine);
}

.hero__sub {
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 440px;
  margin-bottom: 40px;
}

.hero__guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  opacity: .70;
}
.hero__guarantee i {
  font-size: 11px;
  color: var(--green);
  margin-right: 3px;
}
.hero__guarantee-dot {
  opacity: .40;
}

.hero__photo {
  position: relative;
  overflow: hidden;
}
/* Overlay: só a borda esquerda, 25% — não cobre o rosto */
.hero__photo::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 25%;
  height: 100%;
  background: linear-gradient(
    to right,
    #FEFBF8 0%,
    rgba(254,251,248,0.4) 70%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}
.hero__photo img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* =============================================
   S2 — A DOR
   ============================================= */
.pain__body {
  font-size: 18px;
  color: var(--text);
  line-height: 1.9;
}
.pain__body p { margin-bottom: 20px; }
.pain__body p:last-child { margin-bottom: 0; }

.pain__close {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  color: var(--wine);
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(77,12,18,.12);
  line-height: 1.65;
}

/* =============================================
   S3 — PARA QUEM É (cards com emoji)
   ============================================= */
.para-quem {
  background: #F0E9E5;
  padding: 80px 24px;
  text-align: center;
}

.para-quem__label {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4D0C12;
  text-align: center;
  margin-bottom: 16px;
}

.para-quem__title {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 700;
  color: #1A0A0D;
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.15;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.who-card {
  background: #FEFBF8;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(26,10,13,.06);
  text-align: left;
}

.who-card__emoji {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.who-card__text {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.55;
}

/* Responsivo dos cards */
@media (max-width: 768px) {
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .para-quem__title { font-size: 32px; }
}
@media (max-width: 480px) {
  .who-grid { grid-template-columns: 1fr; }
}

/* =============================================
   S3 — DEPOIMENTOS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: start;
  margin-top: 8px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

@media (max-width: 560px) {
  .testimonials-grid { grid-template-columns: 1fr; padding: 0; }
}

.dep-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  box-shadow: 0 2px 10px rgba(26,10,13,.08);
}

/* Bloco 1 — rosinha com borda vinho */
.testimonial--outlined {
  background: var(--rosinha);
  border-left: 3px solid var(--wine);
  border-radius: 8px;
  padding: 28px;
}

/* Blocos 2 e 3 — branco com sombra suave */
.testimonial--card {
  background: var(--bg);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(26,10,13,.07);
  padding: 28px;
}

.testimonial__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
}

/* Slot para prints de tela — adicionar img depois */
.print-slot {
  background: rgba(77,12,18,.04);
  border: 1px dashed rgba(77,12,18,.15);
  border-radius: 8px;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-style: italic;
  color: var(--text-mid);
  opacity: .60;
  padding: 20px;
  text-align: center;
}
.print-slot img { width: 100%; border-radius: 8px; }

/* =============================================
   S5 — O CONFRONTO (dark)
   ============================================= */
.confronto__blocks {
  max-width: 680px;
  margin: 0 auto;
}

.confronto__block {
  padding: 36px 0;
  border-bottom: 1px solid rgba(232,213,177,.15);
}
.confronto__block:first-child { padding-top: 0; }
.confronto__block:last-child  { border-bottom: none; padding-bottom: 0; }

.confronto__num {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 8px;
}

.confronto__phrase {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  color: var(--on-dark);
  line-height: 1.35;
  margin: 8px 0;
}

.confronto__support {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: rgba(254,251,248,.65);
  line-height: 1.6;
}

.confronto__close {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
  text-align: center;
  margin-top: 48px;
}

/* =============================================
   S6 — OS 4 EBOOKS
   ============================================= */
.ebook-intro {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.8;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

/* Grid 4 colunas desktop */
.ebooks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Card: vertical — imagem em cima, texto embaixo */
.ebook-card {
  background: var(--bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(77,12,18,.08);
  box-shadow: 0 4px 20px rgba(26,10,13,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ebook-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26,10,13,.12);
}

.ebook-card__cover {
  width: 100%;
  height: auto;
  display: block;
}

.ebook-card__body {
  padding: 20px;
}

.ebook-card__num {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 6px;
  display: block;
}

.ebook-card__title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 10px;
}

.ebook-card__desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Tablet: 2 colunas */
@media (max-width: 768px) {
  .ebooks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet: alinha cards pelo topo para não cortar imagens */
@media (max-width: 768px) {
  .ebooks-grid { align-items: start; }
  .ebook-card { overflow: visible; }
  .ebook-card__cover {
    height: auto !important;
    border-radius: 12px 12px 0 0;
  }
}

/* Mobile: 1 coluna */
@media (max-width: 480px) {
  .ebooks-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    padding: 0 20px;
  }
}

/* =============================================
   S6 — O QUE ESTÁ INCLUSO
   ============================================= */

/* Stats de impacto */
.incluso-stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  background: var(--rosinha);
  border-radius: 12px;
  padding: 32px 24px;
  margin-bottom: 40px;
}

.incluso-stat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.incluso-stat__num {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--wine);
  line-height: 1;
  margin-bottom: 8px;
}

.incluso-stat__label {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.45;
}

.incluso-stat__sep {
  width: 1px;
  background: rgba(77,12,18,.15);
  flex-shrink: 0;
  align-self: stretch;
}

/* Lista */
.incluso-list { list-style: none; margin-top: 8px; }

.incluso-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(77,12,18,.10);
}
.incluso-list li:first-child { border-top: 1px solid rgba(77,12,18,.10); }

.incluso-list__icon {
  color: var(--wine);
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 2px;
}

.incluso-list__name {
  display: block;
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 4px;
}

.incluso-list__desc {
  display: block;
  font-size: 15px;
  color: var(--text-mid);
}

/* Item bônus — layout próprio, não herda o flex da lista */
li.incluso-list__bonus {
  display: block;
  background: rgba(232,213,177,.25);
  border: 1px solid rgba(232,213,177,.55);
  border-radius: 12px;
  padding: 28px 32px;
  margin-top: 12px;
  border-bottom: none !important;
  border-top: none !important;
}

/* Oculta o ícone separado */
.incluso-list__bonus .incluso-list__icon { display: none; }

.incluso-list__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wine);
  background: var(--gold);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 10px;
}

/* =============================================
   S9 — VALOR E PREÇO (dark)
   ============================================= */
.value-table {
  background: rgba(254,251,248,.05);
  border: 1px solid rgba(232,213,177,.20);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

.value-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(254,251,248,.07);
  font-size: 16px;
}
.value-row:last-child { border-bottom: none; }

.value-row__name  { color: var(--on-dark-mid); }
.value-row__price { color: var(--gold); font-style: italic; flex-shrink: 0; }

.value-row--total .value-row__name {
  font-weight: 700;
  color: var(--on-dark);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.value-row--total .value-row__price {
  font-weight: 700;
  font-size: 17px;
}

.price-box {
  background: rgba(232,213,177,.07);
  border: 1px solid rgba(232,213,177,.22);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  margin-bottom: 24px;
}

.price-box__from {
  font-size: 17px;
  color: rgba(254,251,248,.28);
  text-decoration: line-through;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.price-box__amount {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(5rem, 14vw, 7rem);
  color: var(--gold);
  line-height: 0.95;
  margin-bottom: 16px;
}

.price-box__badge {
  display: inline-block;
  background: rgba(46,125,79,.22);
  border: 1px solid rgba(46,125,79,.45);
  color: #7ecfa0;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.price-box__tagline {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(254,251,248,.65) !important;
  line-height: 1.65;
  max-width: 360px;
  margin: 0 auto;
}

.preco-intro {
  font-family: var(--sans);
  font-size: 16px;
  color: rgba(254,251,248,.70);
  line-height: 1.7;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 32px;
}

.preco-ciclo {
  font-family: var(--sans);
  font-size: 13px;
  font-style: italic;
  color: rgba(254,251,248,.38);
  text-align: center;
  margin-top: 20px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.preco-cta { text-align: center; }

.preco-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(254,251,248,.55);
}
.preco-trust i { margin-right: 4px; }

/* =============================================
   S10 — SOBRE A MENTORA
   ============================================= */
.mentora { text-align: center; }

.mentora__photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--wine);
  margin: 0 auto 24px;
}

.mentora__name {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.mentora__role {
  font-size: 15px;
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.mentora__divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  border: none;
  margin: 0 auto 32px;
}

.mentora__bio {
  font-size: 17px;
  color: var(--text);
  line-height: 1.9;
  max-width: 580px;
  margin: 0 auto;
  text-align: left;
}
.mentora__bio p { margin-bottom: 18px; }
.mentora__bio p:last-child { margin-bottom: 0; }

/* =============================================
   S10 — GARANTIA
   ============================================= */
.guarantee-box {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  border: 2px solid rgba(232,213,177,.60);
  border-radius: 16px;
  padding: 48px 40px;
  background: rgba(232,213,177,.10);
}

.guarantee-box__icon {
  display: block;
  color: var(--gold);
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.guarantee-box__title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.25;
}

.guarantee-box__text {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
}

@media (max-width: 640px) {
  .guarantee-box { padding: 32px 24px; }
}

/* =============================================
   S13 — FAQ
   ============================================= */
.faq { margin-top: 8px; }

.faq__item { border-bottom: 1px solid rgba(77,12,18,.12); }
.faq__item:first-child { border-top: 1px solid rgba(77,12,18,.12); }

.faq__question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  line-height: 1.5;
  transition: color .15s;
}
.faq__question:hover { color: var(--wine); }
.faq__question[aria-expanded="true"] { color: var(--wine); }
.faq__question[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }

.faq__icon {
  color: var(--wine);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 5px;
  transition: transform .25s;
}

.faq__answer { display: none; padding-bottom: 20px; }
.faq__answer.open { display: block; }
.faq__answer p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* =============================================
   S12 — CTA FINAL (claro, continuidade do FAQ)
   ============================================= */
.cta-final {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.cta-final__headline {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.25;
  color: var(--wine);
  margin-bottom: 16px;
}

.cta-final__line2 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.cta-final__decision {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--wine);
  opacity: 0.6;
  margin-bottom: 36px;
}

/* CTA final: botão ajusta ao texto */
.cta-final .btn--buy {
  align-self: center;
}

/* =============================================
   RODAPÉ
   ============================================= */
.footer {
  background: #1A0A0D;
  padding: 32px;
  text-align: center;
}
.footer--rosinha {
  background: var(--rosinha);
  border-top: 1px solid rgba(77,12,18,.08);
}
.footer p {
  font-size: 13px;
  color: rgba(254,251,248,.25);
}
.footer--rosinha p { color: rgba(26,10,13,.35); }
.footer a {
  color: rgba(254,251,248,.35);
  transition: color .15s;
}
.footer--rosinha a { color: rgba(26,10,13,.45); }
.footer a:hover,
.footer--rosinha a:hover { color: var(--wine); }

/* =============================================
   REVEAL ON SCROLL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVO
   ============================================= */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__photo {
    order: -1;
    height: 420px;
    position: relative;
  }
  /* No mobile: gradiente vem de baixo, funde com o conteúdo abaixo */
  .hero__photo::before {
    left: 0; top: auto; bottom: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(
      to top,
      #FEFBF8 0%,
      rgba(254,251,248,0.4) 70%,
      transparent 100%
    );
  }
  .hero__photo img {
    position: absolute;
    top: 0; right: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .hero__content {
    padding: 40px 24px 52px;
    align-items: center;
    text-align: center;
  }
  .hero__headline {
    font-size: 40px;
    text-align: center;
  }
  .hero__sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__badge { align-self: center; }
  .hero__guarantee { justify-content: center; }
  .btn--buy { align-self: center; }

  /* Confronto: centraliza texto no mobile */
  .confronto__block { text-align: center; }

  /* Who cards: centraliza dentro dos cards */
  .who-card { text-align: center; }
}

@media (max-width: 640px) {
  :root { --gap: 56px; }

  .container { padding: 0 20px; }

  .hero__content { padding: 40px 20px 52px; }

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

  .guarantee-box {
    flex-direction: column;
    gap: 20px;
    padding: 28px 24px;
  }

  .btn--buy {
    padding: 18px 32px;
    width: 100%;
    align-self: stretch;
  }

  .mentora__photo { width: 160px; height: 160px; }
  .mentora__bio { text-align: center; }

  .price-box { padding: 28px 20px; }

}
