/* ============================================================
   VARIÁVEIS — Apple Notes / Minimalista Premium
============================================================ */
:root {
  /* Cores base */
  --color-bg:           #FFFFFF;
  --color-bg-alt:       #F2F2F7;   /* Apple secondary background */
  --color-bg-card:      #FFFFFF;
  --color-border:       #E5E5EA;   /* Apple divider */
  --color-text:         #1C1C1E;   /* Apple label */
  --color-text-2:       #48484A;   /* Apple secondary label */
  --color-text-3:       #6C6C70;   /* Apple tertiary label */

  /* Destaques (marca-texto) */
  --highlight-yellow:   rgba(255, 214, 0, 0.28);
  --highlight-green:    rgba(52, 199, 89, 0.18);

  /* CTA */
  --color-cta:          #1C1C1E;
  --color-cta-hover:    #3A3A3C;
  --color-cta-text:     #FFFFFF;

  /* Checklist check */
  --color-check:        #34C759;   /* Apple green */

  /* Número/nota */
  --color-note-num:     #AEAEB2;   /* Apple quaternary */

  /* Fontes */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  /* Espaçamentos */
  --section-pad:        96px 0;
  --container-max:      1080px;
  --container-narrow:   720px;
  --radius-card:        16px;
  --radius-btn:         100px;   /* pill */
  --shadow-card:        0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.06);
  --shadow-card-hover:  0 2px 8px rgba(0,0,0,.08), 0 8px 32px rgba(0,0,0,.1);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text);
  background: var(--color-bg);
}

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

/* ============================================================
   MARCA-TEXTO — <mark>
============================================================ */
mark {
  background: var(--highlight-yellow);
  color: inherit;
  padding: 0 3px 1px;
  border-radius: 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* ============================================================
   CONTAINER
============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow { max-width: var(--container-narrow); }

/* ============================================================
   SEÇÕES
============================================================ */
.section { padding: var(--section-pad); }
.section-alt { background: var(--color-bg-alt); }

/* Label pequeno de seção */
.section-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--color-text-3);
  margin-bottom: 24px;
}

/* Heading de seção */
.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
  margin-bottom: 40px;
}

/* ============================================================
   BOTÕES
============================================================ */
.btn {
  display: inline-block;
  padding: 15px 32px;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background .2s, transform .1s, box-shadow .2s;
  text-decoration: none;
  letter-spacing: .2px;
}

.btn-dark {
  background: var(--color-cta);
  color: var(--color-cta-text);
}

.btn-dark:hover {
  background: var(--color-cta-hover);
  color: var(--color-cta-text);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
}

.btn-dark:active { transform: scale(.98); }

.btn-full { width: 100%; text-align: center; }

.cta-center { text-align: center; margin-top: 40px; }

/* ============================================================
   HERO
============================================================ */
.hero {
  background: var(--color-bg);
  padding: 80px 0 72px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.hero-container { max-width: 680px; margin: 0 auto; padding: 0 24px; }

.hero-video-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .4px;
  color: var(--color-text-2);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 8px 18px;
  margin: 0 auto 20px;
  line-height: 1.5;
  text-align: left;
}

.hero-play-icon {
  font-size: .65rem;
  color: var(--color-text-3);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.6px;
  color: var(--color-text);
  margin: 0 auto 32px;
  max-width: 560px;
}

.hero-title mark {
  background: var(--highlight-yellow);
  padding: 1px 6px 4px;
  border-radius: 6px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* Vídeo wrapper */
.video-wrapper {
  margin: 0 auto 36px;
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.10), 0 8px 40px rgba(0,0,0,.10);
  background: #000;
}

/* ============================================================
   CENÁRIOS / DOR
============================================================ */
.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.note-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 24px 24px 24px 20px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: box-shadow .2s;
  border-left: 3px solid rgba(255, 214, 0, 0.7);
}

.note-card:hover { box-shadow: var(--shadow-card-hover); }

.note-number {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-note-num);
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.note-card p {
  font-size: .95rem;
  color: var(--color-text-2);
  line-height: 1.65;
}

.pain-conclusion {
  margin-top: 48px;
  font-size: 1.1rem;
  color: var(--color-text);
  text-align: center;
  font-weight: 500;
}

/* ============================================================
   PRODUTO – TRÊS PILARES
============================================================ */
.product-inner {
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}

.product-image {
  flex: 0 0 280px;
  max-width: 280px;
}

.product-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}

.product-content { flex: 1; min-width: 260px; }

.product-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--color-text);
}

.body-text {
  font-size: .97rem;
  color: var(--color-text-2);
  margin-bottom: 14px;
}

/* Checklist */
.checklist {
  list-style: none;
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist li {
  font-size: .95rem;
  color: var(--color-text-2);
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-check);
  font-weight: 700;
  font-size: 1rem;
}

/* ============================================================
   FEATURES
============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.feature-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: box-shadow .2s, transform .2s;
}

.feature-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.feature-icon { font-size: 1.6rem; margin-bottom: 12px; display: block; }

.feature-card p {
  font-size: .97rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.5;
}

/* ============================================================
   PÚBLICO-ALVO
============================================================ */
.audience-list {
  list-style: none;
  counter-reset: audience;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.audience-list li {
  counter-increment: audience;
  padding: 18px 20px 18px 60px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  position: relative;
  font-size: .97rem;
  color: var(--color-text-2);
  line-height: 1.6;
}

.audience-list li::before {
  content: counter(audience);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--color-text);
  color: var(--color-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
}

.audience-list li strong { color: var(--color-text); }

/* ============================================================
   DEPOIMENTOS / CAROUSEL
============================================================ */
.carousel {
  position: relative;
  overflow: hidden;
  margin: 32px auto 0;
  max-width: 560px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.carousel-track {
  display: flex;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.carousel-slide { min-width: 100%; }

.carousel-slide img {
  width: 100%;
  display: block;
  border-radius: var(--radius-card);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.carousel-btn {
  background: var(--color-bg-card);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: .9rem;
  cursor: pointer;
  transition: background .15s, box-shadow .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}

.carousel-btn:hover { background: var(--color-bg-alt); }

.carousel-dots { display: flex; gap: 6px; }

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.carousel-dots .dot.active {
  background: var(--color-text);
  transform: scale(1.2);
}

/* ============================================================
   OFERTA
============================================================ */
.offer { text-align: center; }

.offer-subtitle {
  font-size: 1rem;
  color: var(--color-text-2);
  margin-bottom: 32px;
  margin-top: 6px;
}

.price-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.price-tag-old {
  font-size: .9rem;
  color: var(--color-text-3);
}

.price-tag-old s { opacity: .6; }

.price-tag-new {
  font-size: 1.1rem;
  color: var(--color-text-2);
  text-align: center;
}

.price-value {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -.5px;
}

.price-value mark {
  background: var(--highlight-green);
  padding: 6px 16px;
  border-radius: 10px;
  display: inline-block;
}

.price-note {
  font-size: .82rem;
  color: var(--color-text-3);
  font-style: italic;
}

.offer-divider {
  width: 48px;
  height: 1px;
  background: var(--color-border);
  margin: 8px 0;
}

.offer-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  text-align: left;
  margin-bottom: 8px;
}

.offer-includes li {
  font-size: .93rem;
  color: var(--color-text-2);
  padding: 10px 14px;
  background: var(--color-bg-alt);
  border-radius: 10px;
  line-height: 1.4;
}

/* ============================================================
   AUTORA
============================================================ */
.author-name {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 24px;
  color: var(--color-text);
}

.author-bio p {
  font-size: .97rem;
  color: var(--color-text-2);
  margin-bottom: 14px;
  line-height: 1.75;
}

/* ============================================================
   FAQ
============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .2s;
}

.faq-item[open] { box-shadow: var(--shadow-card); }

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: .97rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text);
  gap: 16px;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--color-text-3);
  flex-shrink: 0;
  transition: transform .25s;
  line-height: 1;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item summary:hover { background: var(--color-bg-alt); }

.faq-item p {
  padding: 4px 24px 22px;
  font-size: .93rem;
  color: var(--color-text-2);
  line-height: 1.7;
  border-top: 1px solid var(--color-border);
  margin-top: 0;
  padding-top: 16px;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 28px 0;
  text-align: center;
  font-size: .83rem;
  color: var(--color-text-3);
}

.footer a {
  color: var(--color-text-3);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer a:hover { color: var(--color-text); }

/* ============================================================
   MODAL
============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay[hidden] { display: none; }

.modal-box {
  background: var(--color-bg);
  border-radius: 24px;
  padding: 44px 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.18);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: var(--color-bg-alt);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--color-text-3);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.modal-close:hover { color: var(--color-text); background: var(--color-border); }

.modal-eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--color-text-3);
  margin-bottom: 8px;
}

.modal-box h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 24px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .3px;
}

/* Botão verde do modal — igual ao original */
.btn-cta {
  background: #24C623;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .3px;
  border-radius: var(--radius-btn);
  padding: 16px 24px;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.btn-cta:hover { background: #1da81c; }

.payment-form { display: flex; flex-direction: column; gap: 12px; }

.form-group { display: flex; flex-direction: column; }

.form-group input {
  padding: 13px 16px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  font-size: .97rem;
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none;
}

.form-group input:focus {
  border-color: var(--color-text);
  box-shadow: 0 0 0 3px rgba(0,0,0,.06);
}

/* ============================================================
   RESPONSIVO
============================================================ */
@media (max-width: 768px) {
  :root { --section-pad: 64px 0; }

  .hero { padding: 56px 0 52px; }
  .hero h1 { font-size: 2rem; }

  .product-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }

  .product-image {
    flex: none;
    max-width: 220px;
    margin: 0 auto;
  }

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

  .price-card { padding: 32px 24px; }
  .price-value { font-size: 2rem; }

  .modal-box { padding: 32px 24px; }

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

@media (max-width: 480px) {
  .btn { font-size: .9rem; padding: 13px 24px; }
  .section-heading { font-size: 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
}
