/* ============================================================
   Jaqueline Moraes — jaquelinemoraes.com
   Estilo editorial: off-white, grafite, dourado suave, terracota
   ============================================================ */

:root {
  --bg: #FAF7F4;          /* off-white */
  --bg-alt: #F4EDE5;      /* bege claro */
  --white: #FFFFFF;
  --ink: #2B171C;         /* quase-preto avinhado */
  --graphite: #4A3238;
  --muted: #7A6468;
  --gold: #D8B8B4;        /* rosé para linhas finas e detalhes */
  --gold-soft: #EAD8D5;   /* rosé claro */
  --terra: #6E1E2E;       /* vinho profundo — cor principal */
  --terra-deep: #541523;  /* vinho mais escuro (hover) */
  --nude: #F4E7E4;        /* rosé suave para áreas secundárias */
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 40px rgba(28, 27, 26, 0.07);
  --shadow-soft: 0 6px 24px rgba(28, 27, 26, 0.05);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--terra); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--terra-deep); }

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

/* ---------- Tipografia ---------- */
h1, h2, h3, .serif { font-family: var(--font-serif); color: var(--ink); font-weight: 600; line-height: 1.2; }

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.25rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 16px;
}

.lead { font-size: 1.12rem; color: var(--muted); }

.gold-line {
  width: 56px; height: 1px;
  background: var(--terra);
  opacity: .5;
  border: none;
  margin: 22px 0;
}

.center { text-align: center; }
.center .gold-line { margin-left: auto; margin-right: auto; }

/* ---------- Botões ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .06em;
  padding: 15px 34px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  text-transform: uppercase;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--terra);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(110, 30, 46, .22);
}
.btn-primary:hover { background: var(--terra-deep); color: var(--white); box-shadow: 0 12px 28px rgba(110, 30, 46, .3); }

.btn-outline {
  background: transparent;
  color: var(--terra);
  border-color: rgba(110, 30, 46, .35);
}
.btn-outline:hover { border-color: var(--terra); color: var(--terra-deep); background: rgba(216, 184, 180, .15); }

.btn-light {
  background: var(--white);
  color: var(--terra-deep);
}
.btn-light:hover { color: var(--terra); }

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-ghost-light:hover { border-color: var(--white); color: var(--white); }

/* ---------- Topbar Instagram ---------- */
.topbar {
  background: var(--terra-deep);
  text-align: center;
  padding: 7px 16px;
}
.topbar a {
  color: var(--gold-soft);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar a:hover { color: var(--white); }
.topbar svg { width: 15px; height: 15px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 22px 0;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(250, 248, 244, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(28,27,26,.06);
  padding: 14px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: .01em;
  white-space: nowrap;
}
.brand em { font-style: normal; color: var(--terra); }
.brand:hover { color: var(--ink); }

.nav { display: flex; align-items: center; gap: 22px; }
.nav a {
  font-size: .85rem;
  font-weight: 500;
  color: var(--graphite);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--ink); }
.nav .btn { padding: 11px 24px; font-size: .78rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 42px; height: 42px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 85% 20%, rgba(234, 216, 213, .5), transparent 60%),
    radial-gradient(900px 500px at 10% 90%, rgba(110, 30, 46, .05), transparent 60%),
    var(--bg);
  padding: 140px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy .lead { margin: 20px 0 14px; max-width: 34rem; }
.hero-note { font-size: .95rem; color: var(--muted); margin-bottom: 34px; }
.hero-note strong { color: var(--graphite); font-weight: 600; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-figure { position: relative; }
.hero-figure::before {
  content: '';
  position: absolute;
  inset: 28px -18px -18px 28px;
  background: linear-gradient(140deg, var(--gold-soft), rgba(110, 30, 46, .14));
  border-radius: var(--radius);
  z-index: 0;
}
.hero-figure img, .hero-figure .img-fallback {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}

/* fallback elegante quando a foto ainda não foi adicionada */
.img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, var(--nude), var(--bg-alt));
  color: var(--muted);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
}

/* ---------- Seções ---------- */
.section { padding: 104px 0; }
.section-alt { background: var(--white); }
.section-nude { background: var(--nude); }
.section-head { max-width: 640px; margin: 0 auto 60px; }

/* Apresentação */
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-figure { position: relative; }
.about-figure::after {
  content: '';
  position: absolute;
  top: -16px; right: -16px;
  width: 120px; height: 120px;
  border: 1px solid rgba(110, 30, 46, .45);
  border-radius: var(--radius);
  z-index: 0;
}
.about-figure img, .about-figure .img-fallback {
  position: relative; z-index: 1;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}
.about-copy p { margin-bottom: 18px; }
.about-copy .btn { margin-top: 12px; }

/* Áreas de atuação */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.area-card {
  background: var(--white);
  border: 1px solid rgba(28,27,26,.06);
  border-radius: var(--radius);
  padding: 40px 30px 34px;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.section-alt .area-card { background: var(--bg); }
.area-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.area-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(110, 30, 46, .35);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--terra);
}
.area-icon svg { width: 24px; height: 24px; }
.area-card h3 { margin-bottom: 10px; }
.area-card p { font-size: .95rem; color: var(--muted); flex: 1; }
.area-link {
  margin-top: 20px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.area-link::after { content: ' →'; transition: margin .2s ease; }
.area-link:hover::after { margin-left: 4px; }

/* Curso em destaque */
.course-feature {
  background: linear-gradient(150deg, #4A1220 0%, #6E1E2E 100%);
  border-radius: 24px;
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
  color: #EDE8E0;
  overflow: hidden;
  position: relative;
}
.course-feature::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 216, 213, .18), transparent 70%);
}
.course-feature .eyebrow { color: var(--gold); }
.course-feature h2 { color: var(--white); }
.course-feature .sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-soft);
  margin: 10px 0 18px;
}
.course-feature p { color: rgba(244, 231, 228, .85); margin-bottom: 30px; max-width: 30rem; }
.course-ctas { display: flex; flex-wrap: wrap; gap: 16px; }

.course-mockup {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.mockup-note {
  text-align: center;
  color: rgba(244, 231, 228, .55);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 2;
}
.mockup-badge {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold-soft);
  display: block;
  margin-bottom: 8px;
}

/* Números / autoridade */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}
.stat { padding: 28px 12px; }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--terra);
  line-height: 1;
  display: block;
}
.stat-number .plus { color: var(--gold); opacity: .9; }
.stat-label {
  margin-top: 12px;
  font-size: .85rem;
  color: var(--muted);
  letter-spacing: .02em;
}

/* Públicos */
.publics-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; max-width: 860px; margin: 0 auto; }
.public-chip {
  background: var(--white);
  border: 1px solid rgba(28,27,26,.08);
  border-radius: 999px;
  padding: 12px 26px;
  font-size: .92rem;
  color: var(--graphite);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.public-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(110, 30, 46, .4);
  background: rgba(244, 231, 228, .5);
}

/* Depoimentos */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid rgba(28,27,26,.06);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial .quote-mark {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--terra);
  opacity: .55;
  line-height: .6;
}
.testimonial p { font-size: .96rem; color: var(--muted); font-style: italic; flex: 1; }
.testimonial-person { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--nude);
  display: flex; align-items: center; justify-content: center;
  color: var(--terra);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-person strong { display: block; color: var(--ink); font-weight: 600; font-size: .95rem; }
.testimonial-person span { font-size: .82rem; color: var(--muted); }
.placeholder-note {
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
  margin-top: 28px;
  letter-spacing: .04em;
}

/* Conteúdos */
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.content-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(28,27,26,.06);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.content-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.content-thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(140deg, var(--nude), var(--bg-alt));
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.content-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.content-tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 10px;
}
.content-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.content-body p { font-size: .92rem; color: var(--muted); flex: 1; }
.content-body .area-link { margin-top: 18px; }

.cat-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 48px; }
.cat-filters a {
  font-size: .82rem;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid rgba(28,27,26,.12);
  color: var(--graphite);
}
.cat-filters a:hover, .cat-filters a.active { border-color: var(--terra); color: var(--terra); background: rgba(110, 30, 46, .05); }

/* CTA final */
.cta-final {
  background: linear-gradient(140deg, #4A1220, var(--terra));
  color: var(--white);
  text-align: center;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  bottom: -120px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(234, 216, 213, .16), transparent 70%);
}
.cta-final h2 { color: var(--white); max-width: 720px; margin: 0 auto 18px; }
.cta-final p { color: rgba(255,255,255,.85); max-width: 520px; margin: 0 auto 40px; }
.cta-final .hero-ctas { justify-content: center; }

/* ---------- Rodapé ---------- */
.site-footer {
  background: #2B1218;
  color: #C7B2B4;
  padding: 72px 0 32px;
  font-size: .9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-brand .brand { color: var(--white); font-size: 1.4rem; }
.footer-brand p { margin-top: 12px; max-width: 260px; font-size: .88rem; }
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #B9B3AA; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: .8rem;
  color: #7E7A73;
}

/* ---------- Páginas internas ---------- */
.page-hero {
  padding: 180px 0 80px;
  background:
    radial-gradient(900px 400px at 90% 10%, rgba(228, 213, 176, .3), transparent 60%),
    var(--bg);
}
.page-hero h1 { max-width: 800px; }
.page-hero .lead { max-width: 620px; margin-top: 18px; }

/* Timeline (Sobre) */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 36px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 6px; bottom: 6px;
  width: 1px;
  background: linear-gradient(rgba(110, 30, 46, .5), rgba(110, 30, 46, .08));
}
.timeline-item { position: relative; padding-bottom: 44px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px; top: 8px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--terra);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px rgba(110, 30, 46, .4);
}
.timeline-item h3 { margin-bottom: 6px; }
.timeline-item .when {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terra);
  display: block;
  margin-bottom: 8px;
}
.timeline-item p { color: var(--muted); font-size: .96rem; }

/* Valores / missão */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 2px solid var(--terra);
  padding: 36px 30px;
  box-shadow: var(--shadow-soft);
}
.value-card h3 { margin-bottom: 12px; }
.value-card p { font-size: .95rem; color: var(--muted); }

/* Curso (catálogo) */
.course-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(28,27,26,.06);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  overflow: hidden;
}
.course-card-cover {
  background: linear-gradient(150deg, #4A1220, #6E1E2E);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  text-align: center;
  min-height: 340px;
}
.course-card-cover .mockup-badge { font-size: 2.4rem; }
.course-card-cover .mockup-note { color: rgba(237,232,224,.6); }
.course-card-body { padding: 48px 48px 44px; }
.course-card-body h2 { margin-bottom: 8px; }
.course-card-body .sub { font-family: var(--font-serif); font-style: italic; color: var(--terra); margin-bottom: 20px; }
.course-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 28px; }
.course-meta span {
  font-size: .8rem;
  background: var(--nude);
  color: var(--graphite);
  border-radius: 999px;
  padding: 7px 18px;
}
.check-list { list-style: none; margin: 18px 0 8px; }
.check-list li { padding-left: 30px; position: relative; margin-bottom: 12px; color: var(--muted); font-size: .97rem; }
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--terra);
  font-weight: 700;
}
.coming-soon {
  border: 1.5px dashed rgba(28,27,26,.15);
  border-radius: 20px;
  padding: 56px 32px;
  text-align: center;
  color: var(--muted);
  margin-top: 32px;
}
.coming-soon h3 { color: var(--graphite); margin-bottom: 8px; }

/* Formulários */
.form-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(28,27,26,.06);
  padding: 52px;
  max-width: 720px;
  margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--graphite);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid rgba(28,27,26,.12);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: border-color .25s ease, box-shadow .25s ease;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(110, 30, 46, .1);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 16px; }
.form-card .btn { margin-top: 28px; width: 100%; }

/* WhatsApp flutuante */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--terra);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(110, 30, 46, .35);
  transition: transform .25s ease, background .25s ease;
}
.wa-float:hover { background: var(--terra-deep); }
.wa-float:hover { transform: translateY(-3px) scale(1.05); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* Busca (blog) */
.search-bar { display: flex; gap: 12px; max-width: 560px; margin: 0 auto 40px; }
.search-bar input {
  flex: 1;
  font-family: var(--font-sans);
  font-size: .95rem;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid rgba(28,27,26,.12);
  background: var(--white);
}
.search-bar input:focus { outline: none; border-color: var(--gold); }
.search-bar .btn { padding: 13px 28px; }

/* Página legal */
.legal-body { max-width: 760px; margin: 0 auto; }
.legal-body h2 { font-size: 1.4rem; margin: 40px 0 14px; }
.legal-body p, .legal-body li { color: var(--muted); font-size: .97rem; margin-bottom: 12px; }
.legal-body ul { padding-left: 22px; }

/* ---------- Animações on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 1024px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid, .content-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .course-feature { padding: 56px 40px; }
}

@media (max-width: 1180px) {
  .nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 84vw);
    background: var(--bg);
    box-shadow: -20px 0 60px rgba(28,27,26,.12);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 36px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.22,.61,.36,1);
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1.05rem; }
  .nav-toggle { display: flex; z-index: 110; }
}

@media (max-width: 820px) {
  .section { padding: 76px 0; }
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-grid, .about-grid, .course-feature, .course-card { grid-template-columns: 1fr; }
  .hero-figure { order: -1; max-width: 420px; margin: 0 auto; }
  .about-grid { gap: 44px; }
  .course-card-body { padding: 36px 28px; }
  .form-card { padding: 36px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn, .course-ctas .btn { width: 100%; text-align: center; }
}

@media (max-width: 560px) {
  .areas-grid, .testimonials-grid, .content-grid, .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-final { padding: 80px 0; }
  h1 { font-size: 2.1rem; }
}

/* ---------- Portfólio de marcas ---------- */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.brand-col {
  background: var(--bg);
  border-top: 2px solid var(--terra);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  padding: 26px 22px;
}
.brand-col h3 {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 16px;
}
.brand-col ul { list-style: none; }
.brand-col li {
  font-family: var(--font-serif);
  font-size: .98rem;
  color: var(--graphite);
  padding: 6px 0;
  border-bottom: 1px solid rgba(110, 30, 46, .08);
}
.brand-col li:last-child { border-bottom: none; }
@media (max-width: 1024px) { .brands-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .brands-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }

/* garante texto branco no botão do menu */
.nav a.btn-primary { color: var(--white); }
.nav a.btn-primary::after { display: none; }

/* ---------- Capa oficial do curso (recriada em CSS) ---------- */
.cover-art {
  background: #F1E9E4;
  position: relative;
  display: flex;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  min-height: 420px;
}
.cover-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 44px 4px 56px 38px;
  position: relative;
  z-index: 2;
  text-align: left;
}
.cover-kicker {
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: #6E1E2E;
  margin-bottom: 14px;
}
.cover-rule { width: 120px; height: 1px; background: #C2A25B; opacity: .7; border: none; margin: 0 0 16px; }
.cover-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  color: #2B171C;
  letter-spacing: .02em;
}
.cover-title em { font-style: normal; color: #6E1E2E; }
.cover-mono {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: #C2A25B;
  margin: 18px 0 8px;
}
.cover-name {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #6E1E2E;
}
.cover-photo {
  width: 45%;
  object-fit: cover;
  object-position: top center;
  position: relative;
  z-index: 1;
}
.cover-art::after {
  content: '';
  position: absolute;
  left: -10%; right: 35%;
  bottom: -70px;
  height: 130px;
  background: #6E1E2E;
  border-radius: 50% 50% 0 0 / 90% 90% 0 0;
  z-index: 1;
}
@media (max-width: 820px) {
  .cover-art { min-height: 360px; }
  .cover-left { padding: 36px 4px 56px 26px; }
}

/* artes finais */
.course-mockup.has-img { padding: 0; border: none; background: transparent; min-height: 0; }
.course-mockup.has-img img { border-radius: var(--radius); width: 100%; box-shadow: 0 20px 50px rgba(0,0,0,.28); }
.testimonial-avatar { overflow: hidden; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
