/* ==========================================================================
   Prof Jaque Mendes — sistema visual
   Fiel à estrutura e à identidade real das páginas (jaquemendes.com):
   fundo creme, navy escuro pra prova social, rosa vibrante de destaque,
   verde para CTA, divisor em gradiente ondulado, cards com ícone colorido.
   Aqui só refinado: espaçamento, hierarquia e execução mais limpos.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,600&family=Figtree:wght@400;500;600;700;800&display=swap');

:root {
  --cream:      #FBF1E4;
  --cream-2:    #F6E9D6;
  --navy:       #1E1B3A;
  --navy-2:     #17142C;
  --ink:        #1E1B3A;
  --ink-soft:   #55516E;
  --pink:       #E23FA0;
  --pink-dark:  #B32683;
  --pink-tint:  #FCE3F1;
  --yellow:     #F2B23C;
  --yellow-tint:#FDEFD4;
  --blue:       #3FC1E2;
  --blue-tint:  #DEF6FB;
  --green-cta:  #2E6B3E;
  --green-cta-dark:#1F4C2B;
  --white:      #FFFDF8;
  --line: rgba(30, 27, 58, 0.12);
  --shadow-card: 0 24px 44px -22px rgba(30, 27, 58, 0.28);
  --radius: 20px;
  --font-display: 'Fraunces', 'Iowan Old Style', serif;
  --font-body: 'Figtree', -apple-system, sans-serif;
  --grad: linear-gradient(90deg, var(--yellow) 0%, var(--pink) 50%, var(--blue) 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
  color: var(--navy);
}
h1 { font-size: clamp(2.5rem, 4.6vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

em, .accent { font-style: italic; color: var(--pink); font-family: var(--font-display); }

.lede { font-size: 1.12rem; color: var(--ink-soft); max-width: 620px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink-dark);
  margin-bottom: 14px;
}
.eyebrow.on-dark { color: var(--pink); }
.eyebrow.pill {
  background: var(--pink-tint); color: var(--pink-dark);
  border-radius: 999px; padding: 7px 18px; margin-bottom: 20px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  color: #fff; background: var(--green-cta);
  border: none; border-radius: 999px; padding: 17px 30px;
  text-decoration: none; cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.btn:hover { background: var(--green-cta-dark); transform: translateY(-1px); }
.btn .arrow { width: 18px; height: 18px; border-radius: 50%; background: rgba(255,255,255,.2); display:inline-flex; align-items:center; justify-content:center; font-size:.8rem; }
.btn-note { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 700; color: var(--green-cta); margin-right: 20px; }
.btn-note::before { content: '✓'; }
.btn-notes { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 4px 20px; }

/* ---------- Nav ---------- */

.site-nav { position: sticky; top: 0; z-index: 40; background: rgba(251,241,228,.94); backdrop-filter: blur(6px); border-bottom: 1px solid var(--line); }
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; padding: 16px 32px; }
.brand { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--navy); text-decoration: none; display: flex; align-items: center; gap: 9px; }
.brand .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--pink); display: inline-block; }
.site-nav .btn { padding: 11px 20px; font-size: .88rem; }

.gradbar { height: 6px; background: var(--grad); border: none; margin: 0; }

/* ---------- Hero (split, full-bleed image) ---------- */

.hero { padding: 56px 0 0; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.hero-copy { padding: 40px 40px 64px 0; display: flex; flex-direction: column; justify-content: center; }
.hero-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 30px; }
.hero-logo .mark { width: 40px; height: 40px; flex: none; }
.hero-logo .word { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--navy); line-height: 1.1; }
.hero-logo .sub { font-family: var(--font-body); font-weight: 700; font-size: .68rem; letter-spacing: .1em; color: var(--ink-soft); text-transform: uppercase; }
.hero-photo { position: relative; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 460px; }

/* ---------- Video block ---------- */

.video-block {
  width: 100%; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden;
  background: var(--navy); position: relative; box-shadow: var(--shadow-card);
}
.video-block img { width: 100%; height: 100%; object-fit: cover; opacity: .82; }
.video-block .play {
  position: absolute; inset: 0; margin: auto; width: 64px; height: 64px; border-radius: 50%;
  background: rgba(30,27,58,.55); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}

/* ---------- Sections ---------- */

section { padding: 72px 0; }
section.navy { background: var(--navy); color: var(--cream); }
section.navy h2, section.navy h3 { color: var(--cream); }
section.navy .lede { color: rgba(251,241,228,.68); }

.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }

/* ---------- Stat pills (on navy) ---------- */

.stat-row { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin: 36px 0 44px; }
.stat-pill {
  background: var(--white); border-radius: 16px; padding: 18px 30px; text-align: center;
  min-width: 190px;
}
.stat-pill .n { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--pink-dark); }
.stat-pill .l { font-size: .85rem; color: var(--ink-soft); font-weight: 600; }

.big-stat { text-align: center; }
.big-stat .n { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--pink); display:block; }

/* ---------- Scroll row of theme cards ---------- */

.scroll-row { display: flex; gap: 18px; overflow-x: auto; padding: 8px 4px 18px; scrollbar-width: none; }
.scroll-row::-webkit-scrollbar { display: none; }
.theme-card { flex: none; width: 220px; background: var(--white); border-radius: 14px; overflow: hidden; }
.theme-card img { width: 100%; height: 140px; object-fit: cover; }
.theme-card .cap { padding: 14px 16px; font-weight: 700; color: var(--navy); font-size: .95rem; }

/* ---------- Wavy divider ---------- */

.wave-divider { position: relative; height: 90px; margin-top: -1px; overflow: hidden; }
.wave-divider svg { width: 100%; height: 100%; display: block; }

/* ---------- Discipline / icon cards ---------- */

.grid { display: grid; gap: 26px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.icon-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.icon-card img { width: 100%; height: 150px; object-fit: cover; }
.icon-card .body { padding: 26px; }
.icon-card .badge {
  width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 16px;
}
.icon-card .badge.yellow { background: var(--yellow); }
.icon-card .badge.pink { background: var(--pink); }
.icon-card .badge.blue { background: var(--blue); }
.icon-card h3 { margin-bottom: 14px; }
.dash-list { list-style: none; margin: 0; padding: 0; display: grid; }
.dash-list li { padding: 12px 0; border-top: 1px dashed var(--line); font-size: .95rem; color: var(--ink-soft); position: relative; padding-left: 16px; }
.dash-list li:first-child { border-top: none; padding-top: 0; }
.dash-list.yellow li::before { content: ''; position: absolute; left: 0; top: 20px; width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); }
.dash-list.pink li::before { content: ''; position: absolute; left: 0; top: 20px; width: 6px; height: 6px; border-radius: 50%; background: var(--pink); }
.dash-list.blue li::before { content: ''; position: absolute; left: 0; top: 20px; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }

/* ---------- Plain check / cross lists ---------- */

.check-list, .cross-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.check-list li, .cross-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list li::before {
  content: '✓'; flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--green-cta);
  color: #fff; font-size: .72rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.cross-list li { color: var(--ink-soft); }
.cross-list li::before {
  content: '×'; flex: none; width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--pink);
  color: var(--pink); font-size: .82rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-top: 2px;
}

/* ---------- Pricing ---------- */

.offer-list { list-style: none; margin: 0 auto 40px; padding: 0; max-width: 560px; }
.offer-list li { padding: 10px 0; color: var(--ink-soft); }
.offer-list li strong { color: var(--ink); font-weight: 700; }
.offer-list .price { color: var(--ink-soft); }

.price-card {
  background: var(--white); border-radius: 28px; box-shadow: var(--shadow-card);
  padding: 48px; text-align: center; max-width: 560px; margin: 0 auto;
}
.price-card .from { color: var(--ink-soft); text-decoration: line-through; font-size: 1.05rem; }
.price-card .main { margin: 10px 0 6px; }
.price-card .main .x { font-family: var(--font-body); font-weight: 700; font-size: 1.3rem; color: var(--navy); }
.price-card .main .v { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 5vw, 3.4rem); color: var(--pink); }
.price-card .or { color: var(--ink-soft); margin-bottom: 28px; }
.price-card .btn { width: 100%; justify-content: center; margin-bottom: 18px; }
.price-card .fine { font-size: .88rem; color: var(--ink-soft); margin: 0; }

/* ---------- Trilhas (numbered) ---------- */

.trilha { display: grid; grid-template-columns: 84px 1fr; gap: 24px; padding: 30px 0; border-top: 1px dashed var(--line); }
.trilha:first-child { border-top: none; }
.trilha .n { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; color: var(--pink); }

/* ---------- FAQ ---------- */

.faq-item { background: var(--white); border-radius: 16px; padding: 24px 28px; margin-bottom: 14px; }
.faq-item h3 { font-size: 1.05rem; margin-bottom: 8px; display: flex; gap: 10px; }
.faq-item h3::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--pink); margin-top: 10px; flex: none; }
.faq-item p { margin: 0; color: var(--ink-soft); }

/* ---------- Bio row ---------- */

.bio-row { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; }
.bio-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }

/* ---------- Badge closed ---------- */

.badge-closed { display: inline-block; background: var(--navy); color: var(--cream); font-weight: 700; padding: 9px 22px; border-radius: 999px; margin-bottom: 20px; font-size: .85rem; letter-spacing: .04em; }

/* ---------- Footer ---------- */

footer { padding: 48px 0 40px; text-align: center; color: var(--ink-soft); font-size: .88rem; }
footer a { color: var(--ink-soft); }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 20px; }

/* ---------- Reveal ---------- */

.reveal { opacity: 0; transform: translateY(16px); animation: rise .6s ease forwards; }
.reveal.d1 { animation-delay: .08s; }
.reveal.d2 { animation-delay: .16s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-copy { order: 2; padding: 36px 0; }
  .hero-photo { order: 1; margin: 0 -32px; }
  .hero-photo img { min-height: 320px; }
  .grid.cols-3, .grid.cols-2, .bio-row { grid-template-columns: 1fr; }
  .stat-row { gap: 12px; }
  section { padding: 52px 0; }
  .price-card { padding: 34px 24px; }
}
