/* =====================================================================
   Projeto 28 Dias – Rotina Leve
   Estilos — mobile first
   Paleta: branco / tons claros / verde suave / bege discreto
   ===================================================================== */

:root {
  /* Cores */
  --green-900: #2f5d47;
  --green-700: #3f7d5f;
  --green-600: #4f9370;
  --green-500: #5ba47b;   /* verde principal */
  --green-300: #a9d3bd;
  --green-100: #e6f2ec;
  --green-50:  #f2f9f5;

  --beige-200: #e9e1d3;
  --beige-100: #f4efe6;   /* bege discreto */

  --ink:       #23302b;   /* texto principal */
  --ink-soft:  #56635d;   /* texto secundário */
  --line:      #e7eee9;
  --white:     #ffffff;
  --bg:        #ffffff;

  --danger:    #c0574f;

  /* Tipografia */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  24px;
  --shadow-sm:  0 2px 8px rgba(47, 93, 71, .06);
  --shadow-md:  0 10px 30px rgba(47, 93, 71, .10);
  --shadow-lg:  0 24px 60px rgba(47, 93, 71, .14);
  --maxw:       1120px;
  --gap:        clamp(16px, 4vw, 28px);
}

/* ---------- 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);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { list-style: none; }
h1, h2, h3 { line-height: 1.25; font-weight: 800; letter-spacing: -0.01em; }
strong { font-weight: 700; }

/* ---------- Utilitários ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 40px);
}
.container--narrow { max-width: 760px; }

.section {
  padding-block: clamp(48px, 9vw, 92px);
  scroll-margin-top: 76px;
}
.section--tint { background: var(--green-50); }

.section__title {
  font-size: clamp(1.5rem, 5.2vw, 2.4rem);
  text-align: center;
  max-width: 20ch;
  margin-inline: auto;
  margin-bottom: clamp(24px, 5vw, 44px);
  text-wrap: balance;
}
.section__lead,
.section__closing {
  text-align: center;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-inline: auto;
  font-size: clamp(1rem, 2.6vw, 1.12rem);
}
.section__lead { margin-bottom: clamp(28px, 5vw, 44px); }
.section__closing {
  margin-top: clamp(24px, 5vw, 40px);
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  color: var(--ink);
  font-weight: 500;
}

/* ---------- Ícones ---------- */
.ico { width: 22px; height: 22px; flex: none; color: var(--green-600); }
.ico--lg { width: 30px; height: 30px; }

/* ---------- Botões ---------- */
.btn {
  --btn-bg: var(--green-500);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: 0 8px 20px rgba(91, 164, 123, .30);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(91, 164, 123, .38); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--green-300); outline-offset: 3px; }

.btn--primary { background: linear-gradient(180deg, var(--green-500), var(--green-600)); }
.btn--sm { padding: 10px 18px; font-size: .92rem; }
.btn--lg {
  padding: 18px 30px;
  font-size: clamp(1rem, 3.4vw, 1.18rem);
  font-weight: 800;
  letter-spacing: .01em;
}
.btn--block { display: flex; width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--green-500), var(--green-700));
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: -0.02em;
}
.brand__text {
  display: flex;
  flex-direction: column;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.1;
}
.brand__text small {
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-600);
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1000px 500px at 80% -10%, var(--green-100), transparent 60%),
    linear-gradient(180deg, var(--white), var(--green-50));
  padding-block: clamp(36px, 8vw, 80px);
}
.hero__grid {
  display: grid;
  gap: clamp(32px, 7vw, 56px);
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--green-100);
  color: var(--green-900);
  font-weight: 600;
  font-size: .82rem;
  padding: 7px 13px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.badge .ico { width: 15px; height: 15px; }

.hero__title {
  font-size: clamp(1.85rem, 5.2vw, 2.9rem);
  text-wrap: pretty;
}
.hero__subtitle {
  margin-top: 18px;
  font-size: clamp(1.02rem, 3.4vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.hero__price-label { color: var(--ink-soft); font-size: .95rem; }

.price { font-weight: 800; color: var(--green-900); letter-spacing: -0.02em; }
.price--lg { font-size: clamp(1.8rem, 6vw, 2.4rem); }
.price--xl { font-size: clamp(2.2rem, 8vw, 3rem); }

.hero__content .btn { margin-top: 22px; }
.hero__reassurance {
  margin-top: 14px;
  font-size: .88rem;
  color: var(--ink-soft);
  text-align: center;
}

/* Mockup */
.hero__media { display: flex; justify-content: center; }
.mockup {
  position: relative;
  width: min(440px, 92vw);
  aspect-ratio: 1 / 0.92;
  margin-inline: auto;
}
.mockup__laptop {
  position: absolute;
  left: 0; top: 8%;
  width: 84%;
}
.mockup__laptop-screen {
  background: #fff;
  border: 6px solid #1f3a2d;
  border-radius: 14px 14px 4px 4px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 10;
}
.mockup__laptop-base {
  height: 12px;
  background: linear-gradient(180deg, #274235, #1f3a2d);
  border-radius: 0 0 12px 12px;
  width: 108%;
  margin-left: -4%;
}
.mockup__tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green-700);
  margin-bottom: 8px;
}
.mockup__calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.mockup__calendar span {
  aspect-ratio: 1;
  border-radius: 4px;
  background: var(--green-100);
}
.mockup__calendar span:nth-child(3n) { background: var(--green-300); }

.mockup__phone {
  position: absolute;
  right: 0; bottom: 0;
  width: 33%;
  background: #fff;
  border: 5px solid #1f3a2d;
  border-radius: 20px;
  padding: 12px 10px;
  box-shadow: var(--shadow-lg);
}
.mockup__phone-list { display: grid; gap: 7px; margin-top: 6px; }
.mockup__phone-list i {
  height: 12px;
  border-radius: 4px;
  background: var(--beige-200);
}
.mockup__phone-list i:nth-child(odd) { background: var(--green-100); }

.mockup__ebook {
  position: absolute;
  left: 2%; bottom: -2%;
  width: 27%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(150deg, var(--green-600), var(--green-900));
  border-radius: 6px 12px 12px 6px;
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: .72rem;
  text-align: center;
  padding: 8px;
  line-height: 1.3;
}
.mockup__card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--green-100);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  font-size: .72rem;
  font-weight: 700;
  color: var(--green-900);
  padding: 8px 11px;
}
.mockup__card--recipes { top: -3%; right: 2%; }
.mockup__card--list { top: 4%; left: 0; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: var(--gap); }
.grid--cards { grid-template-columns: 1fr; }
.grid--deliverables { grid-template-columns: 1fr; }
.grid--two { grid-template-columns: 1fr; }

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 4vw, 26px);
  box-shadow: var(--shadow-sm);
}
.card p { color: var(--ink-soft); }
.card h3 {
  font-size: 1.05rem;
  margin: 12px 0 6px;
}
.card--pain {
  display: flex;
  align-items: center;
  gap: 14px;
}
.card--pain p { color: var(--ink); font-weight: 500; }

.card--deliverable { border-color: var(--green-100); }
.card--deliverable .ico--lg {
  padding: 10px;
  width: 46px; height: 46px;
  background: var(--green-50);
  border-radius: 12px;
}

.card--bonus { border-color: var(--beige-200); background: var(--beige-100); }
.card__badge {
  display: inline-block;
  background: var(--green-600);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.card__value {
  margin-top: 12px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--green-900);
}
.card__value span { text-decoration: line-through; color: var(--ink-soft); font-weight: 500; }

/* ---------- Timeline ---------- */
.timeline {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-inline: auto;
}
.timeline__item {
  position: relative;
  background: #fff;
  border: 1px solid var(--green-100);
  border-left: 4px solid var(--green-500);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.timeline__week {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green-600);
  margin-bottom: 6px;
}
.timeline__heading { font-size: 1.12rem; margin-bottom: 6px; }
.timeline__item p { color: var(--ink-soft); }

/* ---------- Accordion ---------- */
.accordion {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}
.accordion__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.accordion__num {
  display: inline-block;
  color: var(--green-600);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-right: 8px;
}
.accordion__chevron { transition: transform .25s ease; color: var(--green-600); }
.accordion__trigger[aria-expanded="true"] .accordion__chevron { transform: rotate(180deg); }
.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.accordion__panel p {
  padding: 0 20px 18px;
  color: var(--ink-soft);
}

/* ---------- Painéis (para quem é) ---------- */
.panel {
  border-radius: var(--radius);
  padding: clamp(22px, 5vw, 32px);
  border: 1px solid var(--line);
}
.panel h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.panel--yes { background: var(--green-50); border-color: var(--green-100); }
.panel--no  { background: var(--beige-100); border-color: var(--beige-200); }
.panel--no h3 .ico { color: var(--danger); }

.ticklist { display: grid; gap: 10px; }
.ticklist li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
}
.ticklist li::before {
  content: "";
  position: absolute;
  left: 0; top: .35em;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: inset 0 0 0 2px #fff, 0 0 0 1px var(--green-500);
}
.ticklist--no li::before { background: var(--danger); box-shadow: inset 0 0 0 2px #fff, 0 0 0 1px var(--danger); }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  gap: 16px;
  counter-reset: step;
  max-width: 820px;
  margin-inline: auto;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  row-gap: 4px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--green-100);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.step__num {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--green-500), var(--green-700));
  color: #fff;
  font-weight: 800;
}
.step h3 { grid-column: 2; font-size: 1.05rem; margin-bottom: 4px; align-self: center; }
.step p { grid-column: 2; color: var(--ink-soft); }

/* ---------- Oferta ---------- */
.offer { background: linear-gradient(180deg, var(--green-50), var(--white)); }
.offer__box {
  max-width: 640px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 6vw, 44px);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.offer__title { font-size: clamp(1.4rem, 5vw, 1.9rem); }
.offer__desc { color: var(--ink-soft); margin-top: 6px; }
.offer__list {
  display: grid;
  gap: 10px;
  text-align: left;
  margin: 24px auto;
  max-width: 460px;
}
.offer__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink);
}
.offer__list .ico { margin-top: 3px; }
.offer__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: 18px 0 22px;
}
.offer__price-label { color: var(--ink-soft); font-size: .95rem; }
.offer__note { margin-top: 14px; font-size: .85rem; color: var(--ink-soft); }

/* ---------- Garantia ---------- */
.guarantee {
  max-width: 760px;
  margin-inline: auto;
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
  background: var(--beige-100);
  border: 1px solid var(--beige-200);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 6vw, 44px);
}
.guarantee__seal {
  display: grid;
  place-items: center;
  width: 104px; height: 104px;
  border-radius: 50%;
  background: #fff;
  border: 3px dashed var(--green-500);
  color: var(--green-900);
}
.guarantee__seal span { font-size: 2.2rem; font-weight: 800; line-height: 1; }
.guarantee__seal small { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.guarantee__text h2 { font-size: clamp(1.3rem, 4.5vw, 1.7rem); margin-bottom: 10px; }
.guarantee__text p { color: var(--ink-soft); max-width: 60ch; }

/* ---------- Aviso ---------- */
.notice-section { padding-block: clamp(32px, 6vw, 56px); }
.notice {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius);
  padding: clamp(18px, 4vw, 26px);
  color: var(--ink-soft);
  font-size: .95rem;
}

/* ---------- Rodapé ---------- */
.site-footer {
  background: var(--green-900);
  color: #d9e7df;
  padding-block: clamp(40px, 7vw, 64px);
  font-size: .92rem;
}
.site-footer__grid {
  display: grid;
  gap: 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.brand--footer .brand__text { color: #fff; }
.brand--footer .brand__text small { color: var(--green-300); }
.site-footer__company { margin-top: 14px; line-height: 1.8; color: #b9ccc1; }
.site-footer__links { display: grid; gap: 10px; align-content: start; }
.site-footer__links a { color: #d9e7df; }
.site-footer__links a:hover { color: #fff; text-decoration: underline; }
.site-footer__disclaimer {
  margin-top: 24px;
  color: #a9bfb4;
  font-size: .84rem;
  line-height: 1.7;
}
.site-footer__copy { margin-top: 18px; color: #9db4a9; font-size: .84rem; }

/* ---------- Sticky CTA (mobile) ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 45;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(47,93,71,.10);
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
}
.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.sticky-cta__price { display: flex; flex-direction: column; line-height: 1.2; }
.sticky-cta__price small { font-size: .72rem; color: var(--ink-soft); }
.sticky-cta__price strong { font-size: 1.1rem; color: var(--green-900); }
.sticky-cta .btn { padding: 12px 20px; white-space: nowrap; }

/* ---------- Reveal (animação de entrada) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ===================================================================
   BREAKPOINTS
   =================================================================== */
@media (max-width: 899px) {
  /* espaço para o CTA fixo não cobrir o rodapé */
  body { padding-bottom: 76px; }
}

@media (min-width: 640px) {
  .grid--cards { grid-template-columns: repeat(2, 1fr); }
  .grid--deliverables { grid-template-columns: repeat(2, 1fr); }
  .grid--two { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .hero__reassurance { text-align: left; }
  .hero__content .btn--block { width: auto; display: inline-flex; }
}

@media (min-width: 900px) {
  .grid--deliverables { grid-template-columns: repeat(3, 1fr); }
  .timeline {
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
  }
  .site-footer__grid { grid-template-columns: 1.4fr 1fr; }
  .sticky-cta { display: none; }
}

@media (min-width: 1000px) {
  .hero__grid {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
  }
  .hero__content .btn--block { width: auto; display: inline-flex; }
}

@media (min-width: 1100px) {
  .grid--cards { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Preferências de movimento ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
  .accordion__panel { transition: none; }
}
