@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ============ Base ============ */
:root {
  --brand: #4338CA;
  --dark: #1E1B4B;
  --accent: #F59E0B;
  --soft: #EEF2FF;
  --ink: #2B2A45;
  --muted: #62617C;
  --line: #E3E6F5;
  --white: #fff;
  --r: 18px;
  --shadow: 0 12px 34px rgba(30, 27, 75, .10);
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}
/* O UIkit 3.21 não aplica mais box-sizing global. Sem isto, os cards com
   `height: 100%` (course-card, step, depo-card, turma-card) ficam 50px+ mais
   altos que a célula do grid e vazam por cima do conteúdo seguinte — era o que
   grudava o botão "Ver todos os cursos" na grade. Vale também para inputs e
   botões com width: 100%. Precisa vir antes de qualquer regra de tamanho. */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
}
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--dark); line-height: 1.18; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5vw, 3.3rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.55rem, 3.4vw, 2.3rem); font-weight: 700; letter-spacing: -.015em; }
h3 { font-size: 1.15rem; font-weight: 700; }
a { color: var(--brand); text-decoration: none; transition: color .2s; }
a:hover { color: var(--dark); text-decoration: none; }
img { max-width: 100%; display: block; }
/* o UIkit força box-sizing: content-box no .uk-container, então este max-width
   continua valendo só para o conteúdo (o padding lateral fica por fora). */
.uk-container { max-width: 1180px; }

/* Ritmo vertical do grid (o UIkit só aplica .uk-grid-margin via JS).
   O respiro entre linhas acompanha a calha horizontal do .uk-grid: 30px e
   40px a partir de 1200px. */
.vgrid { margin-top: -30px; }
.vgrid > * { margin-top: 30px; }
@media (min-width: 1200px) {
  .vgrid { margin-top: -40px; }
  .vgrid > * { margin-top: 40px; }
}

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--brand);
  margin: 0 0 10px;
}
.kicker::before { content: ""; width: 22px; height: 3px; border-radius: 2px; background: var(--accent); }

.section { padding: 72px 0; position: relative; overflow: hidden; }
@media (min-width: 960px) { .section { padding: 84px 0; } }
.sec-head { max-width: 620px; margin-bottom: 40px; }
.sec-head h2 { margin-bottom: 6px; }
.sec-sub { color: var(--muted); margin: 8px 0 0; }
.sec-center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-center .kicker { justify-content: center; }
/* respiro entre a grade de cards e o botão seguinte */
.sec-more { text-align: center; margin-top: 52px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: .92rem;
  padding: 12px 22px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s, box-shadow .18s, background .18s, color .18s;
  white-space: nowrap;
}
.btn svg { flex: none; }
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-brand { background: var(--brand); color: #fff; box-shadow: 0 10px 24px rgba(67, 56, 202, .32); }
.btn-brand:hover { background: var(--dark); color: #fff; }
.btn-amber { background: var(--accent); color: #4A2B00; box-shadow: 0 10px 22px rgba(245, 158, 11, .32); }
.btn-amber:hover { background: #FBBF24; color: #4A2B00; }
.btn-ghost { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-ghost:hover { background: var(--brand); color: #fff; }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: .84rem; }
.btn-block { display: flex; width: 100%; max-width: 100%; box-sizing: border-box; text-align: center; }

/* ============ Geometric shapes ============ */
.shape { position: absolute; pointer-events: none; z-index: 0; }
/* medidas já com a borda inclusa (box-sizing: border-box) */
.sh-ring { width: 178px; height: 178px; border: 14px solid var(--brand); border-radius: 50%; opacity: .12; }
.sh-dots {
  width: 130px; height: 130px; opacity: .55;
  background-image: radial-gradient(var(--brand) 2.2px, transparent 2.3px);
  background-size: 18px 18px;
}
.sh-tri {
  width: 70px; height: 70px; background: var(--accent); opacity: .8;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.sh-square { width: 84px; height: 84px; border: 5px solid var(--accent); border-radius: 14px; transform: rotate(18deg); opacity: .85; }
.sh-half { width: 180px; height: 90px; background: var(--brand); border-radius: 180px 180px 0 0; opacity: .08; }

/* ============ Top strip ============ */
.topstrip { background: var(--dark); color: #C9C8EE; font-size: .8rem; }
.ts-in { display: flex; align-items: center; gap: 20px; padding: 7px 15px; }
.ts-item { display: inline-flex; align-items: center; gap: 6px; }
.ts-item svg { color: var(--accent); flex: none; }
.ts-note { margin-left: auto; color: var(--accent); font-weight: 600; }
.ts-hours { display: none; }
@media (min-width: 720px) { .ts-hours { display: inline-flex; } }
@media (max-width: 500px) { .ts-addr { display: none; } .ts-in { justify-content: center; } .ts-note { margin: 0; } }

/* ============ Header ============ */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .94); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s;
}
.site-head.scrolled { box-shadow: 0 8px 26px rgba(30, 27, 75, .09); }
.head-in { display: flex; align-items: center; gap: 16px; padding-top: 13px; padding-bottom: 13px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img { height: 46px; width: auto; }
.brand-mark { position: relative; width: 38px; height: 38px; flex: none; }
.brand-mark i { position: absolute; display: block; }
.brand-mark i:first-child {
  inset: 0; background: var(--brand); border-radius: 11px 11px 11px 3px;
  transform: rotate(-6deg);
}
.brand-mark i:last-child {
  width: 21px; height: 21px; right: -4px; bottom: -4px;
  background: var(--accent); border-radius: 50%;
  border: 3px solid #fff;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text small {
  font-family: var(--font-head); font-size: .62rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
}
.brand-text strong { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--dark); }
.foot-brand .brand-text small { color: #A5A3D6; }
.foot-brand .brand-text strong { color: #fff; }

.main-nav { display: none; }
.head-cta { margin-left: auto; padding: 10px 16px; font-size: .84rem; }
.nav-toggle {
  background: var(--soft); border: 0; color: var(--dark); cursor: pointer;
  width: 42px; height: 42px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center; flex: none;
}
.nav-toggle .ic-x { display: none; }
body.nav-open .nav-toggle .ic-menu { display: none; }
body.nav-open .nav-toggle .ic-x { display: inline-flex; }
body.nav-open .main-nav {
  display: flex; flex-direction: column; align-items: stretch; gap: 4px;
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 14px 20px 20px; box-shadow: 0 22px 34px rgba(30, 27, 75, .13);
}
body.nav-open .main-nav a { padding: 11px 12px; border-radius: 10px; font-weight: 600; color: var(--dark); }
body.nav-open .main-nav a.active { background: var(--soft); color: var(--brand); }
body.nav-open .main-nav .nav-cta { margin-top: 10px; justify-content: center; color: #4A2B00; }

@media (min-width: 960px) {
  .main-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
  .main-nav a { font-weight: 600; font-size: .93rem; color: var(--dark); position: relative; }
  .main-nav a:not(.nav-cta)::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 3px;
    border-radius: 2px; background: var(--accent); transition: right .22s;
  }
  .main-nav a:not(.nav-cta):hover::after, .main-nav a.active::after { right: 0; }
  .main-nav a.active { color: var(--brand); }
  .main-nav .nav-cta { padding: 10px 18px; font-size: .85rem; color: #4A2B00; }
  .head-cta, .nav-toggle { display: none; }
}

/* ============ Hero ============ */
.hero { background: linear-gradient(160deg, var(--soft) 0%, #fff 78%); position: relative; overflow: hidden; padding: 58px 0 66px; }
.hero-ring { top: -48px; left: -52px; }
.hero-dots { bottom: 40px; left: 42%; }
.hero-tri { top: 70px; right: 8%; width: 48px; height: 48px; opacity: .9; }
.hero-square { bottom: 12%; right: -22px; }
.hero-grid { position: relative; z-index: 1; display: grid; gap: 44px; align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 56px; } .hero { padding: 76px 0 86px; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 16px; font-size: .82rem; font-weight: 600; color: var(--dark);
  box-shadow: 0 6px 18px rgba(30, 27, 75, .07); margin: 0 0 20px;
}
.hero-badge .star { color: var(--accent); display: inline-flex; }
.hero-copy h1 .hl { position: relative; white-space: nowrap; }
.hero-copy h1 .hl::after {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: .06em; height: .34em;
  background: var(--accent); opacity: .38; border-radius: 4px; z-index: -1;
}
.hero-sub { font-size: 1.08rem; color: var(--muted); max-width: 34em; margin: 14px 0 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-perks { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 0; margin: 26px 0 0; }
.hero-perks li { display: inline-flex; align-items: center; gap: 7px; font-size: .88rem; font-weight: 600; color: var(--dark); }
.hero-perks svg { color: var(--brand); background: var(--soft); border-radius: 50%; padding: 3px; width: 27px; height: 27px; flex: none; }

.hero-art { position: relative; max-width: 520px; margin: 0 auto; }
.photo-frame { display: block; border-radius: 26px; overflow: hidden; position: relative; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.pf-hero { box-shadow: var(--shadow); }
.pf-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  border-radius: 26px; border: 1px solid rgba(30, 27, 75, .08);
}
.pf-hero img { aspect-ratio: 10 / 10.5; }
.hero-art::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px; z-index: -1;
  border-radius: 26px; background: var(--brand); opacity: .12;
}
.float-badge {
  position: absolute; display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border-radius: 14px; padding: 10px 15px;
  font-family: var(--font-head); font-size: .8rem; font-weight: 700; color: var(--dark);
  box-shadow: 0 14px 30px rgba(30, 27, 75, .16); white-space: nowrap;
}
.fb-ic { width: 28px; height: 28px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.fb-amber { background: #FEF3C7; color: #B45309; }
.fb-indigo { background: var(--soft); color: var(--brand); }
.fb-1 { top: 20px; left: -10px; }
.fb-2 { bottom: 26px; right: -8px; }
@media (min-width: 960px) { .fb-1 { left: -34px; } .fb-2 { right: -30px; } }

/* ============ Turmas bar ============ */
.turmas-bar { background: var(--dark); color: #fff; padding: 18px 0; }
.tb-in { display: flex; align-items: center; gap: 22px; }
.tb-label {
  display: none; align-items: center; gap: 8px; flex: none;
  font-family: var(--font-head); font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent);
}
@media (min-width: 720px) { .tb-label { display: inline-flex; } }
.tb-track { display: flex; gap: 30px; overflow-x: auto; scrollbar-width: none; flex: 1; }
.tb-track::-webkit-scrollbar { display: none; }
.turma-item { display: flex; flex-direction: column; flex: none; line-height: 1.35; padding-right: 30px; border-right: 1px solid rgba(255, 255, 255, .14); }
.turma-item:last-child { border-right: 0; }
.turma-item strong { font-family: var(--font-head); font-size: .92rem; }
.t-date { color: var(--accent); font-size: .8rem; font-weight: 600; }
.t-info { color: #B7B5E4; font-size: .78rem; }
.tb-more { display: none; align-items: center; gap: 6px; flex: none; color: #fff; font-weight: 600; font-size: .85rem; }
.tb-more:hover { color: var(--accent); }
@media (min-width: 960px) { .tb-more { display: inline-flex; } }

/* ============ Course cards ============ */
.course-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px 26px 24px; height: 100%; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.course-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  opacity: 0; transition: opacity .22s;
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.course-card:hover::before { opacity: 1; }
.cc-icon {
  width: 52px; height: 52px; border-radius: 15px; background: var(--soft); color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.course-card h3 { margin-bottom: 8px; }
.cc-desc { color: var(--muted); font-size: .93rem; margin: 0 0 16px; }
.cc-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--soft); color: var(--brand);
  font-size: .74rem; font-weight: 600; padding: 5px 11px; border-radius: 999px;
}
.chip svg { color: var(--accent); }
.cc-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px dashed var(--line); padding-top: 16px; }
.cc-price { font-family: var(--font-head); font-weight: 800; font-size: 1.08rem; color: var(--dark); }
.cc-link { display: inline-flex; align-items: center; gap: 5px; font-weight: 700; font-size: .87rem; color: var(--brand); }
.cc-link:hover { color: var(--dark); }
.cc-link svg { transition: transform .2s; }
.cc-link:hover svg { transform: translateX(3px); }

/* ============ Metodologia ============ */
.metodo { background: var(--soft); }
.met-dots { top: 46px; right: 5%; }
.met-half { bottom: -12px; left: 6%; }
.step {
  background: #fff; border-radius: var(--r); padding: 30px 26px; height: 100%;
  position: relative; box-shadow: 0 6px 20px rgba(30, 27, 75, .06);
}
.step-num {
  display: inline-block; font-family: var(--font-head); font-size: 2.6rem; font-weight: 800;
  line-height: 1; color: transparent; -webkit-text-stroke: 2px var(--brand);
  margin-bottom: 14px;
}
.step:nth-child(odd) .step-num { -webkit-text-stroke-color: var(--accent); }
.step h3 { margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .93rem; margin: 0; }
.steps > div:nth-child(2) .step { border-bottom: 4px solid var(--accent); }

/* ============ Stats ============ */
.stats-band { background: var(--dark); padding: 54px 0; position: relative; overflow: hidden; }
.stats-ring { border-color: var(--accent); top: -60px; right: -46px; opacity: .2; }
.stats-tri { bottom: -16px; left: 8%; opacity: .3; }
.stat { text-align: center; position: relative; z-index: 1; }
.stat strong {
  display: inline-flex; align-items: baseline; gap: 6px;
  font-family: var(--font-head); font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 800; color: #fff;
}
.stat-star { color: var(--accent); display: inline-flex; align-self: center; }
.stat span { display: block; color: #B7B5E4; font-size: .88rem; margin-top: 2px; }

/* ============ Sobre ============ */
.sobre-copy p { color: var(--muted); }
.perks { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 12px; }
.perks li { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: .93rem; color: var(--dark); }
.perk-ic {
  width: 36px; height: 36px; border-radius: 11px; flex: none;
  background: var(--soft); color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
}
.sobre-media { position: relative; margin: 10px 8px 52px; }
.sm-dots { top: -26px; right: -14px; z-index: 0; }
.sm-square { bottom: 10px; right: 6%; z-index: 2; width: 56px; height: 56px; }
.pf-main { position: relative; z-index: 1; width: 86%; margin-left: auto; box-shadow: var(--shadow); }
.pf-main img { aspect-ratio: 4 / 3; }
.pf-off {
  position: absolute; z-index: 3; left: -6px; bottom: -44px; width: 47%;
  border: 6px solid #fff; box-shadow: 0 18px 38px rgba(30, 27, 75, .2);
}
.pf-off img { aspect-ratio: 1 / 1; }

/* ============ Depoimentos ============ */
.depo { background: linear-gradient(180deg, #fff 0%, var(--soft) 100%); }
.depo-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px 26px; height: 100%; display: flex; flex-direction: column;
  box-shadow: 0 6px 18px rgba(30, 27, 75, .05);
}
.stars { display: inline-flex; gap: 3px; color: var(--accent); margin-bottom: 14px; }
.depo-card > p { color: var(--ink); font-size: .95rem; margin: 0 0 20px; }
.depo-card footer { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.d-ava {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--brand); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.d-who { display: flex; flex-direction: column; line-height: 1.3; }
.d-who strong { font-size: .92rem; color: var(--dark); }
.d-who small { color: var(--muted); font-size: .78rem; }

/* ============ CTA band ============ */
.cta-band {
  background: linear-gradient(120deg, var(--brand), var(--dark));
  padding: 58px 0; position: relative; overflow: hidden;
}
.cta-ring { border-color: #fff; top: -54px; left: -40px; opacity: .12; }
.cta-dots { background-image: radial-gradient(#fff 2.2px, transparent 2.3px); bottom: -30px; right: 6%; opacity: .22; }
.cta-in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; position: relative; z-index: 1; }
.cta-in h2 { color: #fff; margin-bottom: 4px; }
.cta-in p { color: #C9C8EE; margin: 0; max-width: 44em; }

/* ============ Contato ============ */
.contato-info > p { color: var(--muted); max-width: 36em; }
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 13px; }
.contact-list li { display: flex; align-items: center; gap: 12px; font-size: .95rem; }
.contact-list a { color: var(--dark); font-weight: 600; }
.contact-list a:hover { color: var(--brand); }
.cl-ic {
  width: 36px; height: 36px; border-radius: 11px; flex: none;
  background: var(--soft); color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
}
.social { display: flex; gap: 10px; margin-top: 20px; }
.social a {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--dark); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.social a:hover { background: var(--brand); transform: translateY(-3px); }
.map { margin-top: 26px; border-radius: var(--r); overflow: hidden; box-shadow: 0 6px 18px rgba(30, 27, 75, .08); }
.map iframe { width: 100%; height: 230px; border: 0; display: block; }
.hours-card { background: var(--soft); border-radius: var(--r); padding: 22px 24px; margin-top: 26px; }
.hours-card h4 { font-size: 1rem; margin-bottom: 12px; }
.hours-card p { display: flex; align-items: center; gap: 10px; margin: 0 0 8px; font-size: .92rem; color: var(--ink); }
.hours-card .cl-ic { width: 30px; height: 30px; border-radius: 9px; background: #fff; }

.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  padding: 32px 28px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
}
.form-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}
.form-card h3 { margin: 4px 0 2px; }
.form-card label { display: flex; flex-direction: column; gap: 6px; font-family: var(--font-head); font-size: .82rem; font-weight: 600; color: var(--dark); }
.form-card input:not(.hp), .form-card textarea {
  font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  background: #F8F9FE; border: 1.5px solid var(--line); border-radius: 12px;
  padding: 12px 15px; width: 100%; transition: border-color .2s, box-shadow .2s;
}
.form-card input:focus, .form-card textarea:focus {
  outline: none; border-color: var(--brand); background: #fff;
  box-shadow: 0 0 0 4px rgba(67, 56, 202, .12);
}
.form-card textarea { resize: vertical; min-height: 110px; }
.hp { position: absolute; left: -9999px; top: 0; height: 1px; width: 1px; opacity: 0; }
.form-ok {
  display: flex; gap: 13px; align-items: flex-start;
  background: #ECFDF3; border: 1px solid #A7F3C9; border-radius: 15px;
  padding: 17px 19px; margin-bottom: 18px; color: #065F46;
}
.form-ok svg { flex: none; margin-top: 2px; color: #059669; }
.form-ok strong { display: block; margin-bottom: 2px; }
.form-ok p { margin: 0; font-size: .9rem; }

/* ============ Page hero (páginas internas) ============ */
.page-hero {
  background: linear-gradient(160deg, var(--soft) 0%, #fff 90%);
  padding: 54px 0 48px; position: relative; overflow: hidden;
}
.page-hero h1 { font-size: clamp(1.9rem, 4.2vw, 2.8rem); margin-bottom: 6px; }
.ph-sub { color: var(--muted); max-width: 40em; margin: 0; font-size: 1.02rem; }
.ph-ring { top: -58px; right: -46px; }
.ph-dots { bottom: -34px; left: 40%; }
.ph-tri { top: 36px; right: 22%; width: 42px; height: 42px; }
.page-hero .uk-container { position: relative; z-index: 1; }

/* ============ Turmas (página cursos) ============ */
.turmas-sec { background: var(--soft); }
.tsec-dots { top: 40px; right: 4%; }
.turma-card {
  background: #fff; border-radius: var(--r); padding: 26px 24px; height: 100%;
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  box-shadow: 0 6px 18px rgba(30, 27, 75, .06); position: relative; z-index: 1;
}
.tc-date {
  display: inline-block; background: #FEF3C7; color: #B45309;
  font-family: var(--font-head); font-size: .74rem; font-weight: 700;
  padding: 5px 12px; border-radius: 999px;
}
.turma-card h3 { margin: 4px 0 0; }
.turma-card p { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: .87rem; margin: 0 0 8px; }
.turma-card p svg { color: var(--brand); flex: none; }
.turma-card .btn { margin-top: auto; }

/* ============ Galeria ============ */
.gal-shot { display: block; border-radius: var(--r); overflow: hidden; position: relative; box-shadow: 0 8px 22px rgba(30, 27, 75, .09); }
.gal-shot img { width: 100%; aspect-ratio: 16 / 10.5; object-fit: cover; transition: transform .35s; }
.gal-shot:hover img { transform: scale(1.045); }
.gal-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 18px 14px;
  background: linear-gradient(180deg, transparent, rgba(30, 27, 75, .82));
  color: #fff; font-family: var(--font-head); font-size: .88rem; font-weight: 600;
}

/* ============ FAQ ============ */
.faq { background: linear-gradient(180deg, #fff, var(--soft)); }
.faq-dots { top: 44px; left: 5%; }
.faq-list { margin: 0; padding: 0; position: relative; z-index: 1; }
.faq-list > li {
  background: #fff; border: 1px solid var(--line); border-radius: 15px;
  padding: 4px 22px; margin-bottom: 12px !important;
}
.faq-list .uk-accordion-title {
  font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--dark);
  padding: 13px 0;
}
.faq-list .uk-accordion-title::before { background-image: none; content: "+"; font-size: 1.4rem; color: var(--brand); line-height: 1; text-align: center; }
.faq-list .uk-open .uk-accordion-title::before { content: "\2212"; color: var(--accent); }
.faq-list .uk-accordion-content { padding-bottom: 16px; margin-top: 0; }
.faq-list .uk-accordion-content p { color: var(--muted); font-size: .94rem; margin: 0; }

/* ============ Footer ============ */
.footer { background: var(--dark); color: #B7B5E4; padding: 58px 0 26px; }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; }
.foot-tag { font-size: .88rem; margin: 14px 0 0; max-width: 26em; }
.foot-nav { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; font-size: .9rem; }
.foot-nav a { color: #B7B5E4; }
.foot-nav a:hover { color: var(--accent); }
.foot-bottom {
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 44px; padding-top: 22px; font-size: .82rem;
}
.foot-bottom a { color: var(--accent); font-weight: 600; }
.foot-bottom a:hover { color: #fff; }

/* ============ Reveal ============ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
