/* ============================================
   CURSO MICROVERDES — sales page
   Paleta musgo (#2D5A3D) + mel/âmbar (#C9842E) + emerald CTA (#2E7D3D)
   Tipografia Fraunces (display) + Inter (body)
   ============================================ */

:root {
  /* PRIMARY — MUSGO PROFUNDO */
  --moss:         #2D5A3D;
  --moss-dark:    #1F4129;
  --moss-soft:    #6B8E7F;
  --moss-tint:    #D9E4D7;

  /* ACCENT — MEL/ÂMBAR */
  --honey:        #C9842E;
  --honey-dark:   #9E6518;
  --honey-soft:   #E6B678;
  --honey-tint:   #FBF0DA;

  /* CTA */
  --cta:          #2E7D3D;
  --cta-hover:    #256733;

  /* BACKGROUNDS — CREME DE PAPEL */
  --paper:        #FAF6EF;
  --paper-soft:   #F6F0E3;
  --shell:        #F1EADD;
  --ink:          #1F1A17;

  --white:        #FFFFFF;
  --text:         #1F1A17;
  --text-muted:   #6B5E50;
  --max-width:    720px;
  --radius:       16px;

  /* aliases pra não refatorar os 100+ usages */
  --teal:         var(--moss);
  --teal-dark:    var(--moss-dark);
  --teal-soft:    var(--moss-soft);
  --teal-tint:    var(--moss-tint);
  --pink:         var(--honey);
  --pink-dark:    var(--honey-dark);
  --pink-soft:    var(--honey-tint);
  --green-cta:    var(--cta);
  --gray-light:   var(--shell);
  --gray-soft:    var(--paper);
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--paper);
  color: var(--text);
  font-family: 'Inter', system-ui, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 20px;
}

.sec-light  { background: var(--paper); }
.sec-gray   { background: var(--shell); }
.sec-teal   { background: var(--moss-tint); }
.sec-pink   { background: var(--moss); color: #fff; }
.sec-dark   { background: var(--ink); color: #fff; }

h1, h2, h3, h4 {
  line-height: 1.15;
  margin: 0 0 16px;
  font-weight: 800;
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 60, "WONK" 0;
  letter-spacing: -0.01em;
}

.hl { color: var(--honey-dark); }
.t  { color: var(--moss); }

/* ============ HERO ============ */
.hero {
  background: linear-gradient(180deg, #F1EADD 0%, #F6F0E3 55%, #FAF6EF 100%);
  padding: 28px 20px 16px;
  text-align: center;
}
.hero .logo-mark {
  max-width: 220px;
  margin: 0 auto 20px;
}
.hero h1 {
  font-size: 30px;
  line-height: 1.15;
  max-width: 900px;
  margin: 0 auto 20px;
  font-weight: 800;
}
.hero h1 .hl { color: var(--honey-dark); }

.hero-subbullets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 760px;
  margin: 0 auto 20px;
  justify-content: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--moss-tint);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(31,65,41,.06);
}

.hero-note {
  max-width: 720px;
  margin: 0 auto 20px;
  color: var(--text-muted);
  font-size: 14px;
  font-style: italic;
}
.hero-note b { color: var(--text); font-style: normal; }

.hero-image-wrap {
  max-width: 540px;
  margin: 0 auto;
}
.hero-image-wrap img { width: 100%; }

.scroll-arrow {
  display: block;
  width: 52px;
  margin: -14px auto 0;
  position: relative;
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-arrow img { width: 100%; }
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(6px); }
}

/* ============ "PARA QUEM É" ============ */
.para-casais {
  position: relative;
  background: var(--shell);
  padding: 40px 20px 56px;
  overflow: hidden;
}
.para-casais::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 320px;
  background: radial-gradient(ellipse at center bottom,
    rgba(201,132,46,.35) 0%,
    rgba(201,132,46,.15) 35%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.para-casais .container { padding: 0; position: relative; z-index: 1; }

.para-casais-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 20px;
}
.para-casais-title .hl { color: var(--honey-dark); }

.para-lista {
  list-style: none;
  padding: 0;
  margin: 0 auto 24px;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.para-lista li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(31,65,41,.05);
}
.para-lista li::before {
  content: "✓";
  color: var(--moss);
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
  background: var(--moss-tint);
  width: 24px; height: 24px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* CTA BUTTON */
.btn-cta {
  display: inline-block;
  background: var(--cta);
  color: var(--white);
  text-decoration: none;
  padding: 18px 28px;
  font-size: 17px;
  font-weight: 800;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
  box-shadow: 0 4px 0 var(--moss-dark), 0 8px 24px rgba(46,125,61,.35);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  animation: pulse 2s ease-in-out infinite;
}
.btn-cta:hover {
  background: var(--cta-hover);
  box-shadow: 0 4px 0 var(--moss-dark), 0 8px 32px rgba(201,132,46,.4);
}
.btn-cta:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--moss-dark);
}
@keyframes pulse {
  0%,100% { transform: scale(1);    box-shadow: 0 4px 0 var(--moss-dark), 0 8px 24px rgba(46,125,61,.35); }
  50%     { transform: scale(1.03); box-shadow: 0 4px 0 var(--moss-dark), 0 12px 36px rgba(201,132,46,.5); }
}
.cta-wrap { text-align: center; position: relative; z-index: 2; }

/* ============ BAND DE IDENTIFICAÇÃO (musgo) ============ */
.band-pink {
  background: var(--moss);
  color: var(--paper);
  text-align: center;
  padding: 28px 20px;
}
.band-pink p {
  margin: 0 auto;
  max-width: 720px;
  font-size: 16px;
  font-weight: 700;
}
.band-pink b { color: var(--honey-soft); }

/* ============ DOR + CARDS ============ */
.dor-pink {
  background: var(--moss);
  color: var(--paper);
  padding: 40px 20px 48px;
  text-align: center;
}
.dor-pink h2 {
  font-size: 24px;
  margin: 16px 0;
  color: var(--paper);
}
.dor-pink p {
  max-width: 680px;
  margin: 10px auto;
  font-size: 15px;
  color: var(--paper);
}
.dor-pink b { color: var(--honey-soft); font-weight: 800; }
.dor-icon {
  max-width: 160px;
  margin: 0 auto 10px;
}

.cards-briga {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 680px;
  margin: 24px auto 8px;
}
.card-briga {
  background: var(--paper);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  flex: 1 1 240px;
  max-width: 260px;
  font-size: 13px;
  font-weight: 600;
  border-top-left-radius: 4px;
  border-top: 3px solid var(--honey);
  box-shadow: 0 4px 16px rgba(31,65,41,.15);
  position: relative;
}
.card-briga:nth-child(even) {
  border-top-left-radius: 16px;
  border-top-right-radius: 4px;
}

.quote-callout {
  background: var(--paper);
  color: var(--text);
  border-left: 5px solid var(--honey);
  padding: 16px 20px;
  font-style: italic;
  max-width: 680px;
  margin: 28px auto 0;
  text-align: left;
  font-size: 14px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(31,65,41,.12);
}
.quote-callout b { font-style: normal; color: var(--moss); }

/* ============ DOR STAGE (imagem central + cards flutuantes) ============ */
.dor-stage {
  position: relative;
  max-width: 480px;
  margin: 32px auto 16px;
  padding: 0 8px;
}
.dor-photo {
  display: block;
  width: 78%;
  max-width: 340px;
  margin: 0 auto;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,0.3));
}
.dor-stage .card-briga {
  position: absolute;
  z-index: 3;
  flex: none;
  max-width: 175px;
  font-size: 12.5px;
  padding: 12px 14px;
  line-height: 1.4;
  text-align: left;
}
.dor-stage .card-briga .card-emoji {
  display: block;
  font-size: 22px;
  margin-bottom: 4px;
}
.card-briga--tl { top: 4px;  left: 0;  transform: rotate(-1.5deg); }
.card-briga--br { bottom: 14px; right: 0; transform: rotate(1.5deg); }

@media (min-width: 640px) {
  .dor-stage { max-width: 560px; }
  .dor-photo { width: 70%; max-width: 360px; }
  .dor-stage .card-briga { max-width: 210px; font-size: 13.5px; padding: 14px 16px; }
  .card-briga--tl { top: 16px; left: 0; }
  .card-briga--br { bottom: 32px; right: 0; }
}

/* ============ PASSOS + BÔNUS (cards musgo-claro) ============ */
.passo-secao { padding: 40px 20px; }

.passo-card {
  background: var(--moss-tint);
  border-radius: var(--radius);
  padding: 24px 20px 28px;
  margin: 0 auto 22px;
  max-width: 560px;
  text-align: left;
}
.passo-card .passo-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.passo-card img {
  width: 100%;
  border-radius: 12px;
}
.passo-num {
  color: var(--honey-dark);
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
  font-family: 'Inter', sans-serif;
}
.passo-card h3 {
  font-size: 26px;
  color: var(--moss);
  margin: 6px 0 12px;
  font-weight: 800;
  line-height: 1.15;
}
.passo-card p {
  margin: 0 0 10px;
  font-size: 15px;
  color: var(--text);
}
.passo-card p:last-child { margin-bottom: 0; }

/* ============ BÔNUS HEADER ============ */
.recap-title-line {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 24px;
}
.recap-title-line .pretitle {
  font-size: 13px;
  font-weight: 800;
  color: var(--honey-dark);
  letter-spacing: 2px;
  margin: 0 0 8px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.recap-title-line h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0;
}
.recap-title-line h2 .hl { color: var(--honey-dark); }

.etem-mais-divider {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  margin: 40px 0 24px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--moss);
}

/* ============ BENEFÍCIOS POR ESPÉCIE (CARROSSEL) ============ */
.beneficios-especies {
  background: var(--moss);
  color: var(--paper);
  padding: 56px 0;
  overflow: hidden;
}
.beneficios-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.beneficios-title {
  color: var(--paper);
  text-align: center;
  font-size: 26px;
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.2;
}
.beneficios-hl {
  color: var(--honey-soft);
  font-style: italic;
}

.carousel-wrap {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 8px 20px 16px;
}
.carousel::-webkit-scrollbar { display: none; }

.carousel-card {
  flex: 0 0 82%;
  max-width: 380px;
  scroll-snap-align: center;
  background: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
}
.carousel-card img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--honey);
  color: var(--white);
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 26px;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0 0 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: background 0.15s;
}
.carousel-arrow:hover { background: var(--honey-dark); }
.carousel-arrow:active { transform: translateY(-50%) scale(0.95); }
.carousel-arrow--prev { left: 0; }
.carousel-arrow--next { right: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  border: 0;
  padding: 0;
}
.carousel-dot.is-active {
  background: var(--honey-soft);
  transform: scale(1.4);
}

@media (min-width: 640px) {
  .beneficios-title { font-size: 30px; }
  .carousel-card { flex: 0 0 46%; max-width: 340px; }
}
@media (min-width: 900px) {
  .carousel-card { flex: 0 0 32%; }
}

/* ============ DEPOIMENTOS EM VÍDEO ============ */
.depoimentos-videos {
  background: var(--moss);
  color: var(--paper);
  padding: 56px 20px;
}
.depoimentos-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.depoimentos-title {
  color: var(--paper);
  text-align: center;
  font-size: 26px;
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.2;
}
.depoimentos-title .depoimentos-hl {
  color: var(--honey-soft);
  font-style: italic;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
}
.video-card {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  background: var(--moss-dark);
}
.video-card iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
@media (min-width: 640px) {
  .depoimentos-videos { padding: 72px 20px; }
  .depoimentos-title { font-size: 32px; margin-bottom: 40px; }
  .video-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 720px;
  }
}

/* ============ RECAPITULANDO (valores) ============ */
.recap-section {
  background: var(--paper);
  padding: 48px 20px;
}
.recap-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 20px;
}
.recap-title .t { color: var(--moss); }

.recap-list {
  background: var(--white);
  border-radius: var(--radius);
  padding: 8px 20px;
  box-shadow: 0 8px 32px rgba(31,65,41,.08);
  max-width: 560px;
  margin: 0 auto;
}
.recap-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 4px;
  border-bottom: 1px solid var(--shell);
  gap: 16px;
}
.recap-item:last-child { border: 0; }
.recap-item .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--moss);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}
.recap-item .label {
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
}
.recap-item .price {
  color: var(--honey-dark);
  font-weight: 900;
  white-space: nowrap;
  font-size: 16px;
  text-decoration: line-through;
}

.recap-total {
  text-align: center;
  margin: 32px auto 0;
  max-width: 560px;
  font-size: 16px;
  font-weight: 600;
}
.recap-total .tachado {
  color: var(--honey-dark);
  text-decoration: line-through;
  font-weight: 900;
}

/* ============ OFERTA ============ */
.oferta {
  background: var(--moss);
  padding: 48px 20px;
  text-align: center;
}
.oferta .inner {
  background: var(--paper);
  color: var(--text);
  max-width: 400px;
  margin: 0 auto;
  border-radius: var(--radius);
  padding: 32px 20px;
  box-shadow: 0 16px 48px rgba(31,65,41,.35);
  border: 1px solid var(--honey-tint);
}
.oferta .mockup { max-width: 280px; margin: 0 auto 16px; }
.oferta .logo-oferta { max-width: 200px; margin: 0 auto 16px; }

.oferta .apenas {
  display: inline-block;
  background: var(--honey);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}
.oferta .price-parc {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--moss);
  font-family: 'Fraunces', serif;
}
.oferta .price-big {
  font-size: 64px;
  font-weight: 900;
  margin: 0 0 4px;
  color: var(--honey-dark);
  letter-spacing: -2px;
  line-height: 1;
  font-family: 'Fraunces', serif;
}
.oferta .price-big .rs {
  font-size: 24px;
  vertical-align: middle;
  margin-right: 4px;
  color: var(--honey-dark);
}
.oferta .price-small {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 20px;
}
.oferta .vital {
  background: var(--moss-dark);
  color: var(--honey-soft);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  display: block;
  margin-top: 14px;
  letter-spacing: 1px;
  line-height: 1.3;
  font-family: 'Inter', sans-serif;
}
.oferta .lim {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ============ AUTORIDADES ============ */
.autoridade {
  background: var(--white);
  padding: 40px 20px;
}
.autoridade .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
  margin: 0 auto;
  gap: 20px;
  text-align: center;
}
.autoridade img.foto {
  width: 220px;
  height: auto;
  aspect-ratio: 248 / 400;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(31,65,41,.15);
  border: 3px solid var(--honey-tint);
}
.autoridade h3 {
  font-size: 26px;
  margin: 0 0 6px;
  color: var(--moss);
}
.autoridade .cargo {
  color: var(--honey-dark);
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 12px;
  font-family: 'Inter', sans-serif;
  letter-spacing: .3px;
}
.autoridade p { font-size: 15px; margin: 8px 0; color: var(--text); line-height: 1.65; }

/* ============ FAQ ============ */
.faq-title {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 24px;
  color: var(--moss);
}
.faq details {
  background: var(--white);
  border: 1px solid var(--shell);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 10px 0;
  box-shadow: 0 2px 8px rgba(31,65,41,.04);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  list-style: none;
  position: relative;
  padding-right: 30px;
  color: var(--moss);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -4px;
  color: var(--honey-dark);
  font-size: 26px;
  font-weight: 400;
}
.faq details[open] summary::after { content: "−"; }
.faq p {
  margin: 12px 0 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}

/* ============ RODAPÉ ============ */
.rodape {
  background: var(--ink);
  color: #a39488;
  text-align: center;
  padding: 32px 20px;
  font-size: 12px;
}
.rodape a { color: var(--honey-soft); text-decoration: underline; }
.rodape p { margin: 8px 0; }

/* ============ DESKTOP ============ */
@media (min-width: 768px) {
  .hero h1 { font-size: 42px; }
  .para-casais-title { font-size: 32px; }
  .recap-title { font-size: 36px; }
  .faq-title { font-size: 36px; }

  .passo-card {
    padding: 32px 32px 36px;
    max-width: 640px;
  }
  .passo-card h3 { font-size: 30px; }

  .autoridade .wrap {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
  .autoridade img.foto { width: 260px; }

  .oferta .inner { max-width: 440px; }
  .oferta .price-big { font-size: 76px; }
}
