/* =========================================================
   Cura de Vó — Landing Page
   Sistema: painéis arredondados empilhados sobre um fundo
   verde-claro, como uma caixa de receitas de família.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@1,400;1,500;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root{
  /* --- cor --- */
  --verde:        #019C73;
  --verde-escuro: #017454;
  --verde-900:    #0B3B2E;
  --verde-tint:   #E6F5F0;
  --verde-tint-2: #D3EEE4;
  --bg:           #F2F8F6;
  --branco:       #FFFFFF;
  --preto:        #17181A;
  --preto-muted:  rgba(23,24,26,.68);
  --linha:        rgba(23,24,26,.09);

  /* --- tipografia --- */
  --f-corpo:  'Plus Jakarta Sans', system-ui, sans-serif;
  --f-voz:    'Fraunces', Georgia, serif;

  /* --- raio --- */
  --r-sm:   12px;
  --r-md:   20px;
  --r-lg:   28px;
  --r-xl:   40px;
  --r-pill: 999px;

  /* --- espaço --- */
  --gap-painel: 28px;

  /* --- sombra --- */
  --shadow-soft: 0 24px 60px -30px rgba(1,60,45,.35);
  --shadow-card: 0 14px 34px -20px rgba(15,30,25,.22);
}

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

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

body{
  margin: 0;
  background: var(--bg);
  color: var(--preto);
  font-family: var(--f-corpo);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a{ color: inherit; text-decoration: none; }

ul, ol{ margin: 0; padding: 0; list-style: none; }

h1, h2, h3{
  margin: 0 0 .5em;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--preto);
}

p{ margin: 0 0 1.1em; }
p:last-child{ margin-bottom: 0; }

:focus-visible{
  outline: 3px solid var(--verde-escuro);
  outline-offset: 3px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* =========================================================
   Utilitários
   ========================================================= */

.page-shell{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section__inner{ padding: 0; }
.section__inner--narrow{ max-width: 700px; margin: 0 auto; }
.center{ text-align: center; }

.section__title--center{
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--verde-escuro);
  margin-bottom: 14px;
}

.lead-strong{
  font-family: var(--f-voz);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: var(--verde-escuro);
  line-height: 1.45;
  margin-top: 1.4em;
}

.quote-line{
  font-family: var(--f-voz);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--preto);
  padding-left: 18px;
  border-left: 3px solid var(--verde);
}

/* placeholders de imagem — deixados em branco de propósito */
.img-placeholder{
  background: linear-gradient(155deg, var(--verde-tint) 0%, var(--branco) 100%);
  border: 1.5px dashed rgba(1,156,115,.4);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  min-height: 180px;
  color: rgba(23,24,26,.32);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.img-placeholder::before{ content: attr(data-label); }

.img-placeholder--onGreen{
  background: linear-gradient(155deg, rgba(255,255,255,.92) 0%, var(--branco) 100%);
  border-color: rgba(255,255,255,.55);
}

/* imagens reais nos espaços reservados */
.media-photo{
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.media-photo img,
.media-photo video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.media-photo--onGreen{
  border: 7px solid var(--branco);
}

/* =========================================================
   Botões
   ========================================================= */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  padding: 18px 32px;
  border-radius: var(--r-pill);
  font-family: var(--f-corpo);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  white-space: normal;
  max-width: 100%;
  cursor: pointer;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn strong{ font-weight: 800; }

.btn--primary{
  background: var(--verde);
  color: var(--branco);
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover{
  background: var(--verde-escuro);
  transform: translateY(-2px);
  box-shadow: 0 30px 60px -25px rgba(1,60,45,.5);
}

.btn--onlight{
  background: var(--branco);
  color: var(--verde-900);
  box-shadow: 0 20px 45px -22px rgba(0,0,0,.35);
}
.btn--onlight:hover{
  transform: translateY(-2px);
  box-shadow: 0 26px 55px -22px rgba(0,0,0,.45);
}

.btn--block{ width: 100%; }

.btn-label{ display: inline; }
.btn-arrow{ display: inline-block; transition: transform .2s ease; }
.btn:hover .btn-arrow{ transform: translateX(4px); }

/* =========================================================
   Faixa superior + cabeçalho
   ========================================================= */

.top-ribbon{
  background: var(--verde-900);
  color: var(--branco);
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  padding: 7px 16px;
  letter-spacing: .01em;
}

.header{
  padding: 12px 0;
}
.header__inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}
.logo:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -18px rgba(1,60,45,.45);
}
.logo__img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 640px){
  .header__inner{ justify-content: center; }
}

.header__cta{
  font-weight: 700;
  font-size: .92rem;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  background: var(--verde-tint);
  color: var(--verde-900);
  transition: background .2s ease, transform .2s ease;
}
.header__cta:hover{ background: var(--verde-tint-2); transform: translateY(-1px); }

@media (max-width: 640px){
  .header__cta{ display: none; }
}

/* =========================================================
   Estrutura de painéis (a "caixa de receitas")
   ========================================================= */

main{
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 24px 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap-painel);
}

.panel{
  border-radius: var(--r-xl);
  padding: clamp(48px, 6vw, 96px) clamp(24px, 5vw, 72px);
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.panel.is-visible{ opacity: 1; transform: translateY(0); }

.panel--white{ background: var(--branco); }
.panel--tint{ background: var(--verde-tint); }
.panel--green{ background: var(--verde); color: var(--branco); }
.panel--green h2, .panel--green h1{ color: var(--branco); }
.panel--green p{ color: rgba(255,255,255,.9); }
.panel--green .lead-strong{ color: var(--branco); }
.panel--green .quote-line{ color: var(--branco); border-left-color: rgba(255,255,255,.6); }

/* =========================================================
   Hero
   ========================================================= */

.hero{
  padding-top: clamp(20px, 3vw, 40px);
}
.hero__inner{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero h1{
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
}
.hero h1 em{
  font-family: var(--f-voz);
  font-style: italic;
  font-weight: 500;
  color: var(--verde-escuro);
}
.hero__sub{
  max-width: 46ch;
}
.hero__sub p{
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--preto-muted);
  margin-bottom: .6em;
}
.hero__fine{
  margin-top: 14px;
  font-size: .88rem;
  color: var(--preto-muted);
  text-align: center;
}
.hero__media{ aspect-ratio: 16 / 9; }

@media (max-width: 860px){
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__media{ order: -1; aspect-ratio: 16 / 9; }
}

/* =========================================================
   Problema / Missão (texto + imagem)
   ========================================================= */

.problema p, .missao p{ font-size: 1.06rem; color: var(--preto-muted); }
.missao p{ color: rgba(255,255,255,.9); }
.problema .quote-line{ margin: 1.3em 0; }

.problema__copy{ text-align: center; }
.problema__copy .quote-line{ text-align: left; }

.problema__grid{
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.problema__media{ aspect-ratio: 4 / 3; }

.missao__grid{
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.missao__media{ aspect-ratio: 4 / 5; }

@media (max-width: 860px){
  .problema__grid, .missao__grid{ grid-template-columns: 1fr; }
}

/* =========================================================
   Solução (texto + imagem)
   ========================================================= */

.solucao__grid{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.solucao__media{ aspect-ratio: 4 / 3; }
.solucao__copy p{ font-size: 1.06rem; color: var(--preto-muted); }

@media (max-width: 860px){
  .solucao__grid{ grid-template-columns: 1fr; }
  .solucao__media{ order: -1; }
}

/* =========================================================
   Checklist de acesso
   ========================================================= */

.checklist{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 32px;
  margin-top: 40px;
}
.checklist li{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.02rem;
  font-weight: 500;
}
.check-icon{
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--verde);
  position: relative;
  margin-top: 2px;
}
.check-icon::after{
  content: '';
  position: absolute;
  left: 7px;
  top: 5px;
  width: 8px;
  height: 13px;
  border-right: 2.5px solid var(--branco);
  border-bottom: 2.5px solid var(--branco);
  transform: rotate(45deg);
}

@media (max-width: 700px){
  .checklist{ grid-template-columns: 1fr; }
}

/* =========================================================
   Como funciona
   ========================================================= */

.steps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
  counter-reset: step;
}
.steps li{
  background: var(--verde-tint);
  border-radius: var(--r-lg);
  padding: 32px 26px;
}
.steps__num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--verde);
  color: var(--branco);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.steps h3{
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.steps p{
  font-size: .96rem;
  color: var(--preto-muted);
}

@media (max-width: 860px){
  .steps{ grid-template-columns: 1fr; }
}

/* =========================================================
   Depoimentos — "cartões de receita"
   ========================================================= */

.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.card-recipe{
  background: var(--branco);
  border-radius: var(--r-lg);
  padding: 28px 26px 26px;
  border-top: 4px dashed var(--verde);
  box-shadow: var(--shadow-card);
  margin: 0;
}
.card-recipe__avatar{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin-bottom: 18px;
  min-height: 0;
  overflow: hidden;
}
.card-recipe__avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-recipe__avatar--tall img{
  object-position: 50% 22%;
}
.card-recipe p{
  font-family: var(--f-voz);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--preto);
}
.card-recipe cite{
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-family: var(--f-corpo);
  font-weight: 700;
  font-size: .88rem;
  color: var(--verde-escuro);
}

@media (max-width: 860px){
  .cards{ grid-template-columns: 1fr; }
}

/* =========================================================
   Oferta / preço
   ========================================================= */

.oferta > .page-shell,
.oferta .section__inner{ text-align: center; }
.oferta p{ color: var(--preto-muted); font-size: 1.04rem; }

.price-card{
  margin-top: 36px;
  background: var(--branco);
  border: 1.5px solid var(--linha);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px);
  text-align: left;
  box-shadow: var(--shadow-card);
}

.price-list li{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--linha);
  font-size: .98rem;
}
.price-list li:first-child{ padding-top: 0; }
.price-list li span:first-child{ font-weight: 500; }
.price-list li span:last-child{ font-weight: 700; white-space: nowrap; }

.price-list__label{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.price-list__free{
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: var(--verde-escuro);
}
.price-list__free .strike{
  text-decoration: line-through;
  color: var(--preto-muted);
  font-weight: 500;
}

.price-list__bonus .tag{
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--verde-escuro);
  background: var(--verde-tint);
  border-radius: var(--r-pill);
  padding: 3px 10px;
}

@media (max-width: 600px){
  .price-card{ padding: 22px 18px; }
  .price-list li{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .price-list li span:last-child{ font-size: 1.05rem; }
  .price-list li.price-list__total{
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
  }
}

.price-list__total{ border-bottom: none; padding-bottom: 4px; }
.price-list__total span:first-child{ font-weight: 700; }
.price-list__total .strike{
  text-decoration: line-through;
  color: var(--preto-muted);
  font-weight: 600;
}

.price-highlight{
  text-align: center;
  margin: 30px 0 26px;
  padding: 28px 20px;
  background: var(--verde-tint);
  border-radius: var(--r-md);
}
.price-highlight__label{
  display: block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--verde-escuro);
  margin-bottom: 6px;
}
.price-highlight__value{
  font-family: var(--f-voz);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  color: var(--verde-900);
  line-height: 1;
}
.price-highlight__value small{ font-size: .5em; }
.price-highlight__note{
  display: block;
  margin-top: 8px;
  font-size: .92rem;
  color: var(--preto-muted);
}

.price-card .fine{
  text-align: center;
  font-size: .88rem;
  margin-top: 14px;
}

.warning{
  margin-top: 20px;
  padding: 16px 18px;
  border: 1.5px solid rgba(1,156,115,.35);
  background: var(--verde-tint);
  border-radius: var(--r-sm);
  font-size: .9rem;
  color: var(--preto);
  text-align: left;
}

/* =========================================================
   Garantia — selo
   ========================================================= */

.garantia__grid{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.garantia__grid p{ color: rgba(255,255,255,.9); }

.seal{
  width: 168px;
  height: 168px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 0 0 auto;
  transform: rotate(-8deg);
  color: var(--branco);
}
.seal::before{
  content: '';
  position: absolute;
}
.seal-inner{
  width: 138px;
  height: 138px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.seal__pct{
  font-family: var(--f-voz);
  font-style: italic;
  font-weight: 600;
  font-size: 1.9rem;
  line-height: 1;
}
.seal__label{
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 6px;
}
.seal__days{
  font-size: .72rem;
  font-weight: 700;
  margin-top: 2px;
}

@media (max-width: 700px){
  .garantia__grid{ grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

/* =========================================================
   FAQ
   ========================================================= */

.accordion{ margin-top: 40px; display: flex; flex-direction: column; gap: 14px; }

.accordion details{
  background: var(--branco);
  border: 1.5px solid var(--linha);
  border-radius: var(--r-md);
  padding: 6px 22px;
  transition: border-color .2s ease;
}
.accordion details[open]{ border-color: rgba(1,156,115,.4); }

.accordion summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  font-weight: 700;
  font-size: 1.02rem;
}
.accordion summary::-webkit-details-marker{ display: none; }

.accordion summary::after{
  content: '+';
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--verde-tint);
  color: var(--verde-escuro);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform .25s ease, background .2s ease;
}
.accordion details[open] summary::after{
  transform: rotate(135deg);
  background: var(--verde);
  color: var(--branco);
}

.accordion p{
  padding: 0 0 20px;
  color: var(--preto-muted);
  font-size: .98rem;
}

/* =========================================================
   CTA final
   ========================================================= */

.cta-final{ text-align: center; }
.cta-final h2{
  font-size: clamp(2rem, 4vw, 2.9rem);
}
.cta-final h2 em{
  font-family: var(--f-voz);
  font-style: italic;
  font-weight: 500;
}
.cta-final p{
  color: rgba(255,255,255,.92);
  font-size: 1.08rem;
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-final .btn{ margin-top: 8px; }
.cta-final .fine{
  margin-top: 16px;
  font-size: .88rem;
  color: rgba(255,255,255,.75);
}

/* =========================================================
   Rodapé
   ========================================================= */

.footer{
  background: var(--verde-900);
  color: rgba(255,255,255,.8);
  margin-top: var(--gap-painel);
  padding: 56px 0 32px;
}
.footer__brand{
  font-family: var(--f-voz);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--branco);
  margin-bottom: 20px;
}
.footer__links{
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 24px;
  font-size: .92rem;
  font-weight: 600;
}
.footer__links a:hover{ color: var(--branco); }
.footer__disclaimer{
  font-size: .82rem;
  font-style: italic;
  line-height: 1.6;
  max-width: 62ch;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 20px;
  color: rgba(255,255,255,.65);
}
.footer__copy{
  font-size: .8rem;
  margin-top: 20px;
  color: rgba(255,255,255,.5);
}

/* =========================================================
   Barra fixa de CTA (mobile)
   ========================================================= */

.sticky-cta{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border-radius: var(--r-pill);
  background: var(--verde);
  color: var(--branco);
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.sticky-cta.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 700px){
  .sticky-cta{
    display: flex;
    flex-wrap: nowrap;
  }
  .sticky-cta__label{
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .panel{ padding-bottom: clamp(48px, 6vw, 96px); }
}

@media (max-width: 640px){
  .btn{
    width: 100%;
    padding: 16px 22px;
    font-size: .98rem;
  }
  .sticky-cta{
    font-size: .92rem;
    padding: 14px 18px;
  }
}

@media (max-width: 380px){
  .sticky-cta{ font-size: .82rem; padding: 13px 14px; }
}

/* =========================================================
   Responsivo geral
   ========================================================= */

@media (max-width: 640px){
  :root{ --gap-painel: 18px; }
  .panel{ border-radius: var(--r-lg); }
  main{ padding-top: 8px; }
}

@media (max-width: 600px){
  main{ padding-left: 12px; padding-right: 12px; }
  .header__inner{ padding-left: 12px; padding-right: 12px; }
  .panel{ padding-left: 18px; padding-right: 18px; }
}

@media (max-width: 420px){
  main{ padding-left: 8px; padding-right: 8px; }
  .header__inner{ padding-left: 8px; padding-right: 8px; }
  .panel{ padding-left: 14px; padding-right: 14px; }
}

/* Base de fonte um pouco maior no mobile — escala todo o texto em rem,
   incluindo os tamanhos reduzidos especificamente para caber no mobile. */
@media (max-width: 640px){
  html{ font-size: 17.5px; }
}
@media (max-width: 380px){
  html{ font-size: 17px; }
}
