:root {
  --brand: #1d2cff;
  --brand-dark: #101aa6;
  --brand-soft: #eef0ff;
  --ink: #111827;
  --muted: #5f6777;
  --line: #dfe3eb;
  --surface: #ffffff;
  --surface-alt: #f6f7fb;
  --dark: #090d2f;
  --shadow: 0 18px 50px rgba(13, 24, 70, 0.12);
  --radius: 20px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 9999;
  background: var(--dark);
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(223,227,235,.9);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 178px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 10px;
  color: #343b4b;
  font-size: .94rem;
  font-weight: 600;
}
.main-nav a:hover, .main-nav a[aria-current="page"] {
  background: var(--brand-soft);
  color: var(--brand-dark);
}
.nav-cta {
  background: var(--brand) !important;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(29,44,255,.18);
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 18%, rgba(29,44,255,.18), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7f8ff 58%, #eef0ff 100%);
  padding: 84px 0 76px;
}
.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -200px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 54px solid rgba(29,44,255,.05);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-dark);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  background: var(--brand);
  border-radius: 999px;
}
h1, h2, h3 { line-height: 1.16; margin-top: 0; }
h1 {
  font-size: clamp(2.45rem, 5vw, 4.6rem);
  letter-spacing: -.045em;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(1.85rem, 3.3vw, 3.1rem);
  letter-spacing: -.035em;
  margin-bottom: 18px;
}
h3 { font-size: 1.25rem; margin-bottom: 10px; }
.lead {
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
  color: var(--muted);
  max-width: 760px;
  margin-bottom: 32px;
}
.hero-actions, .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 750;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 12px 26px rgba(29,44,255,.22);
}
.btn-primary:hover { background: var(--brand-dark); }
.btn-secondary {
  background: white;
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover { border-color: var(--brand); color: var(--brand-dark); }
.hero-photo-wrap { position: relative; }
.hero-photo {
  width: min(100%, 370px);
  margin-left: auto;
  aspect-ratio: 357 / 502;
  object-fit: cover;
  border-radius: 30px 30px 90px 30px;
  box-shadow: var(--shadow);
  border: 8px solid rgba(255,255,255,.92);
}
.hero-badge {
  position: absolute;
  left: -26px;
  bottom: 40px;
  background: var(--dark);
  color: white;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  max-width: 220px;
  font-weight: 700;
}

.page-hero {
  padding: 72px 0 64px;
  background: linear-gradient(135deg, var(--dark) 0%, #121b72 72%, var(--brand) 140%);
  color: white;
}
.page-hero .lead { color: rgba(255,255,255,.78); margin-bottom: 0; }
.page-hero .eyebrow { color: #cfd4ff; }
.page-hero .eyebrow::before { background: #9aa4ff; }

.section { padding: 88px 0; }
.section-alt { background: var(--surface-alt); }
.section-dark { background: var(--dark); color: white; }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 42px;
}
.section-head p { max-width: 690px; color: var(--muted); margin: 0; }
.section-dark .section-head p { color: rgba(255,255,255,.72); }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(13,24,70,.04);
}
.card:hover { transform: translateY(-3px); transition: .2s ease; box-shadow: var(--shadow); }
.card p { color: var(--muted); margin-bottom: 0; }
.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 900;
  margin-bottom: 20px;
}
.card-link {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 750;
  color: var(--brand-dark);
  text-decoration: none;
}
.card-link:hover { text-decoration: underline; }

.steps { counter-reset: step; }
.step {
  position: relative;
  padding-left: 64px;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: white;
  font-weight: 900;
}
.step p { color: var(--muted); margin-bottom: 0; }

.quote {
  margin-top: 34px;
  padding: 26px 30px;
  border-left: 5px solid var(--brand);
  background: var(--brand-soft);
  border-radius: 0 16px 16px 0;
  font-size: 1.12rem;
  font-weight: 700;
}

.feature-case {
  overflow: hidden;
  padding: 0;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  min-height: 460px;
}
.feature-case img { width: 100%; height: 100%; object-fit: cover; }
.feature-case-content { padding: 46px; align-self: center; }
.tag {
  display: inline-flex;
  padding: 6px 11px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  border-radius: 999px;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.result-box {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #f2f4ff;
  color: #202a7f;
  font-weight: 750;
}
.case-card .tool-list { margin-top: 18px; }
.tool-list { display: flex; gap: 8px; flex-wrap: wrap; }
.tool-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: .75rem;
  color: #4d5566;
  background: #fff;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-image {
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; }
.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 11px 0;
  color: #343b4b;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 900;
}

.service-block {
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}
.service-block:last-child { border-bottom: 0; }
.service-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 56px;
}
.service-number {
  font-size: 4rem;
  color: #dfe3ff;
  font-weight: 900;
  line-height: 1;
}
.service-grid ul { columns: 2; padding-left: 20px; }
.service-grid li { margin-bottom: 8px; color: #3f4758; break-inside: avoid; }

.tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.tab-button {
  border: 1px solid var(--line);
  background: white;
  padding: 9px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  color: #4e5667;
}
.tab-button.active, .tab-button:hover { background: var(--brand); color: white; border-color: var(--brand); }
.case-item[hidden] { display: none; }

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 42px;
  align-items: start;
}
.contact-card {
  background: var(--dark);
  color: white;
  padding: 36px;
  border-radius: 24px;
}
.contact-card p, .contact-card a { color: rgba(255,255,255,.78); }
.contact-row { margin: 22px 0; }
.contact-row strong { display: block; color: white; margin-bottom: 4px; }
.form-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  background: white;
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid #cfd5df;
  border-radius: 11px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 3px solid rgba(29,44,255,.13);
  border-color: var(--brand);
}
.form-note { font-size: .85rem; color: var(--muted); }

.cta-band {
  padding: 54px 0;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: white;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cta-inner h2 { margin-bottom: 8px; }
.cta-inner p { margin: 0; color: rgba(255,255,255,.8); }
.cta-band .btn-secondary { border-color: rgba(255,255,255,.5); background: white; }

.site-footer {
  background: #070a24;
  color: rgba(255,255,255,.74);
  padding: 58px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr;
  gap: 42px;
}
.footer-brand img { width: 180px; filter: drop-shadow(0 8px 14px rgba(0,0,0,.2)); }
.footer-brand p { max-width: 430px; }
.footer-title { color: white; font-size: .9rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.footer-links { list-style: none; padding: 0; margin: 14px 0 0; }
.footer-links li { margin: 8px 0; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.13);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: .85rem;
}

.kicker { color: var(--brand-dark); font-weight: 800; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }
.no-margin { margin: 0; }

@media (max-width: 1120px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 81px;
    left: 0;
    right: 0;
    background: white;
    padding: 16px 20px 22px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 28px rgba(13,24,70,.08);
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 11px 14px; }
  .hero-grid, .split, .contact-grid, .service-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .hero-photo-wrap { max-width: 420px; margin: 0 auto; }
  .hero-photo { margin: 0 auto; }
  .hero-badge { left: -8px; }
  .grid-4, .grid-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-case { grid-template-columns: 1fr; }
  .feature-case img { max-height: 520px; }
  .service-grid ul { columns: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--max)); }
  .header-inner { min-height: 74px; }
  .main-nav { top: 73px; }
  .brand img { width: 150px; }
  .section { padding: 66px 0; }
  .page-hero { padding: 54px 0; }
  .hero-grid { gap: 42px; }
  .hero-badge { position: static; margin: -18px auto 0; max-width: 270px; text-align: center; }
  .section-head { display: block; }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .feature-case-content { padding: 28px; }
  .cta-inner { display: block; }
  .cta-inner .button-row { margin-top: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: block; }
  .service-grid { gap: 18px; }
}


/* Turmas abertas */
.card-button { margin-top: 24px; }
.open-course-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
  gap: 30px;
  align-items: center;
  border-top: 5px solid var(--brand);
}
.open-course-card > .btn { justify-self: start; }
.course-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eaf8ef;
  color: #176338;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.course-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #24a45a;
  box-shadow: 0 0 0 5px rgba(36,164,90,.12);
}
.course-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
}
.course-heading .course-status { flex: 0 0 auto; }
.course-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 62px;
}
.course-meta div {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
  padding: 18px;
}
.course-meta strong, .course-meta span { display: block; }
.course-meta strong { color: var(--brand-dark); margin-bottom: 5px; font-size: .84rem; text-transform: uppercase; letter-spacing: .045em; }
.course-meta span { color: #343b4b; }
.compact-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; }
.compact-meta div { background: var(--surface-alt); }
.course-content-head { margin-top: 12px; }
.course-outline { display: grid; gap: 18px; }
.course-class {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(13,24,70,.04);
}
.course-class h3 { margin-bottom: 10px; }
.course-class p { margin: 0; color: var(--muted); }
.class-date {
  width: 66px;
  height: 72px;
  border-radius: 15px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  display: grid;
  place-content: center;
  text-align: center;
  line-height: 1;
}
.class-date span { font-size: 1.7rem; font-weight: 900; }
.class-date small { margin-top: 5px; font-size: .72rem; font-weight: 900; letter-spacing: .1em; }
.course-contact-grid { align-items: stretch; }
.course-contact-grid .contact-card { height: 100%; }
.form-grid { gap: 16px; }
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 4px 0 22px;
  color: var(--muted);
  font-size: .9rem;
}
.consent-row input { margin-top: 5px; width: 18px; height: 18px; flex: 0 0 auto; }
.consent-row a { color: var(--brand-dark); font-weight: 700; }
.form-honey { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { min-height: 26px; margin: 16px 0 0; font-weight: 700; }
.form-status.success { color: #176338; }
.form-status.error { color: #a32424; }
.form-card.is-sending { opacity: .78; pointer-events: none; }

@media (max-width: 900px) {
  .open-course-card { grid-template-columns: 1fr; }
  .course-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .course-heading { display: block; }
  .course-heading .course-status { margin-top: 8px; }
  .course-meta, .compact-meta { grid-template-columns: 1fr; }
  .course-class { grid-template-columns: 1fr; }
}
