
:root {
  --bg: #f7f8f8;
  --surface: #ffffff;
  --soft: #eef3f0;
  --ink: #0a120d;
  --muted: #5d6763;
  --line: #d6e1da;
  --green: #57c84d;
  --green-2: #98d650;
  --green-dark: #11813d;
  --hero: #070f0b;
  --hero-2: #0d1913;
  --white: #fff;
  --shadow: 0 16px 44px rgba(10, 18, 13, 0.1);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
input, select, button { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 12px;
  z-index: 100;
}
.skip-link:focus { top: 12px; }

.shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 15, 11, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  color: var(--green);
  font-size: clamp(2.2rem, 2.8vw, 3rem);
  font-weight: 900;
  line-height: 1;
}
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.desktop-nav a {
  color: rgba(255,255,255,0.94);
  font-weight: 600;
}
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: #fff; }
.mobile-nav-toggle, .mobile-nav { display: none; }
.mobile-nav-toggle {
  width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px; background: rgba(255,255,255,.04); color: #fff;
  align-items: center; justify-content: center; flex-direction: column; gap: 4px;
}
.mobile-nav-toggle span { display:block; width:18px; height:2px; border-radius:2px; background:currentColor; }
.mobile-nav {
  position: absolute; top: calc(100% + 1px); left: 12px; right: 12px;
  padding: 10px; border-radius: 16px; background: rgba(7,15,11,.985);
  border: 1px solid rgba(255,255,255,.10); box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.mobile-nav a { display:block; padding: 13px 14px; border-radius: 10px; color:#fff; font-weight:700; }
.mobile-nav a:hover, .mobile-nav a:focus-visible { background: rgba(255,255,255,.06); }
.field-help { margin-top:-2px; color:#75817b; font-size:.78rem; }
.cookie-consent {
  position: fixed; z-index: 90; left: 20px; right: 20px; bottom: 20px;
  max-width: 920px; margin: 0 auto; padding: 16px 18px; border-radius: 18px;
  background: #fff; color: var(--ink); border: 1px solid var(--line); box-shadow: 0 20px 60px rgba(0,0,0,.22);
  display: flex; align-items: center; gap: 18px; justify-content: space-between;
}
.cookie-consent[hidden] { display:none; }
.cookie-consent p { margin:0; font-size:.9rem; color:var(--muted); }
.cookie-consent a { color:var(--green-dark); text-decoration:underline; }
.cookie-actions { display:flex; align-items:center; gap:10px; flex:0 0 auto; }
.cookie-actions .btn { min-height:44px; padding:0 16px; border-radius:12px; }
.cookie-reject { min-height:44px; padding:0 12px; border:0; background:transparent; color:var(--muted); font-weight:700; }


.btn {
  min-height: 58px;
  padding: 0 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(87, 200, 77, 0.35);
  outline-offset: 2px;
}
.btn-top, .btn-solid {
  background: linear-gradient(135deg, #a3de54, var(--green));
  color: #09120c;
  box-shadow: 0 12px 28px rgba(87, 200, 77, 0.2);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.32);
}
.btn-ghost, .btn-outline-green {
  background: #fff;
  color: var(--green-dark);
  border-color: #b9d8bf;
}
.btn-outline-green:hover { background: #f4faf5; }
.full { width: 100%; }

 .hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7,15,11,.98) 0%, rgba(7,15,11,.96) 34%, rgba(7,15,11,.82) 54%, rgba(7,15,11,.40) 72%, rgba(7,15,11,.14) 100%),
    url('hero-banner.webp') right center / cover no-repeat,
    linear-gradient(135deg, var(--hero), var(--hero-2));
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 76%, rgba(82,200,109,.08), transparent 28%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 700px;
  padding: 58px 0 132px;
}
.hero-copy {
  max-width: 610px;
}
.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .9rem;
  font-weight: 900;
}
.eyebrow.light { color: #c9efbe; }
.eyebrow.green { color: var(--green-dark); }
.hero h1 {
  margin: 0;
  font-size: clamp(3.9rem, 6.4vw, 6.25rem);
  line-height: .92;
  letter-spacing: -.05em;
}
.hero h1 .white { display: block; color: #fff; }
.hero h1 .green { display: block; color: #8fd74a; }
.hero-lead {
  margin: 24px 0 0;
  max-width: 570px;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.55;
  color: rgba(255,255,255,.94);
}
.hero-price {
  margin-top: 22px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 14px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(6px);
}
.hero-price span {
  font-size: .88rem;
  font-weight: 700;
}
.hero-price strong {
  color: #b9eb67;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: -.025em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}
.hero-actions .btn { min-width: 205px; }
.hero-trust-inline {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 440px;
  margin-top: 18px;
  color: rgba(255,255,255,.94);
}
.hero-trust-inline > span:last-child { min-width: 0; }
.hero-trust-inline strong {
  display: block;
  font-size: .98rem;
  line-height: 1.2;
}
.hero-trust-inline small {
  display: block;
  margin-top: 3px;
  color: rgba(255,255,255,.72);
  font-size: .88rem;
  line-height: 1.35;
}
.trust-seal {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #9cde54;
  border: 1px solid rgba(156,222,84,.55);
  background: rgba(11,23,15,.58);
}
.trust-seal svg,
.benefit-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-curve {
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 3;
  width: 100%;
  height: 96px;
  display: block;
  pointer-events: none;
}
.hero-benefits-section {
  background: #fff;
  padding: 22px 0 28px;
}
.hero-benefits {
  list-style: none;
  margin: 0;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid #dce6df;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #fbfcfb);
  box-shadow: 0 14px 34px rgba(10,18,13,.07);
}
.hero-benefits li {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px 24px;
}
.hero-benefits li:not(:last-child) {
  border-right: 1px solid #e0e8e2;
}
.benefit-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  border: 1px solid #d8eadb;
  background: linear-gradient(180deg, #f7fcf7, #edf7ee);
}
.benefit-icon svg { width: 29px; height: 29px; }
.hero-benefits strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
}
.hero-benefits small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.35;
}
.section { padding: 84px 0; }
.section-white { background: #fff; }
#areas { padding-top: 58px; }
.section-soft { background: linear-gradient(180deg, #f0f5f2 0%, #f7f8f8 100%); }
.section-heading { margin-bottom: 38px; }
.section-heading.centered { text-align: center; }
.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.section-subtitle,
.section-heading p:not(.eyebrow) {
  margin: 14px auto 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.area-card {
  background: #fff;
  border: 1px solid #b8d7bc;
  border-radius: 26px;
  padding: 30px 28px 28px;
  text-align: center;
  box-shadow: 0 18px 48px rgba(10, 18, 13, 0.08);
}
.area-card.accent { border-color: #c8dc8b; }
.area-badge {
  width: 72px;
  height: 72px;
  margin: -56px auto 18px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2ca354, #5ac74c);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 24px rgba(37, 166, 81, 0.25);
}
.area-card h3 {
  margin: 0;
  font-size: 2rem;
  color: var(--green-dark);
}
.area-meta, .area-count {
  margin: 10px 0 0;
  font-weight: 800;
  color: var(--ink);
}
.area-desc {
  margin: 16px auto 22px;
  max-width: 280px;
  color: var(--muted);
}
.area-card a { font-weight: 800; color: var(--green-dark); }

.catalog-search {
  max-width: 940px;
  margin: 0 auto 28px;
  background: #fff;
  border: 1px solid #dce7e0;
  border-radius: 24px;
  padding: 18px 20px;
  box-shadow: 0 16px 42px rgba(10, 18, 13, 0.07);
  display: grid;
  gap: 10px;
}
.catalog-search label {
  font-weight: 850;
  font-size: 1.04rem;
}
.search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}
.catalog-search input {
  width: 100%;
  min-height: 58px;
  border-radius: 16px;
  border: 1px solid #cfded4;
  padding: 0 18px 0 48px;
  background:
    linear-gradient(transparent, transparent),
    #fbfcfb;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%2311813d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 16px center;
}
.search-count {
  min-height: 1.35em;
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}
.course-browser { margin-top: 12px; }
.course-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.course-tab {
  appearance: none;
  border: 1px solid #d6e4da;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  min-height: 92px;
  border-radius: 20px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  box-shadow: 0 12px 32px rgba(10,18,13,.055);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.course-tab:hover {
  transform: translateY(-2px);
  border-color: #a9cfb2;
  box-shadow: 0 15px 36px rgba(10,18,13,.08);
}
.course-tab.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #0e7d38, #23a653);
  box-shadow: 0 16px 38px rgba(20,136,61,.18);
}
.course-tab:nth-child(2).is-active { background: linear-gradient(135deg, #087e69, #28a786); }
.course-tab:nth-child(3).is-active { background: linear-gradient(135deg, #75aa2e, #93c644); }
.course-tab-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #edf6ef;
  color: var(--green-dark);
  font-size: 1.25rem;
}
.course-tab.is-active .course-tab-icon {
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}
.course-tab-copy { display: grid; gap: 3px; min-width: 0; }
.course-tab-copy strong { font-size: 1.22rem; line-height: 1.15; }
.course-tab-copy small { color: var(--muted); line-height: 1.3; }
.course-tab.is-active .course-tab-copy small { color: rgba(255,255,255,.82); }
.course-panels {
  background: #fff;
  border: 1px solid #d9e5dd;
  border-radius: 28px;
  box-shadow: 0 20px 52px rgba(10,18,13,.08);
  overflow: hidden;
}
.course-category {
  display: none;
  padding: 30px;
}
.course-category.is-active,
.course-category.search-visible { display: block; }
.course-category.search-visible + .course-category.search-visible {
  border-top: 1px solid #e3ebe6;
}
.course-panel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2eae5;
}
.course-panel-kicker {
  margin: 0 0 4px;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .76rem;
  font-weight: 900;
}
.course-panel-head h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -.03em;
}
.course-panel-head p:not(.course-panel-kicker) {
  margin: 8px 0 0;
  color: var(--muted);
}
.course-panel-count {
  flex: 0 0 auto;
  padding: 9px 13px;
  border-radius: 999px;
  background: #edf6ef;
  color: var(--green-dark);
  font-size: .88rem;
  font-weight: 800;
}
.course-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 12px;
}
.course-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 11px 14px 11px 36px;
  border-radius: 14px;
  background: #f6f8f7;
  border: 1px solid #eef2ef;
  color: #17231b;
  font-size: .89rem;
  line-height: 1.32;
}
.course-item::before {
  content: "";
  position: absolute;
  left: 15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #43b65b;
  box-shadow: 0 0 0 4px rgba(67,182,91,.09);
}
.course-category:not(.is-expanded):not(.search-visible) .course-item:nth-child(n+16) { display: none; }
.course-expand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 22px auto 0;
  padding: 0 20px;
  border: 1px solid #b8d5bf;
  border-radius: 14px;
  background: #fff;
  color: var(--green-dark);
  font-weight: 850;
}
.course-category.search-visible .course-expand { display: none; }
.hidden { display: none !important; }
.catalog-actions { display: none; }

.steps-section {
  scroll-margin-top: 94px;
  padding-top: 34px;
  padding-bottom: 48px;
  background:
    radial-gradient(circle at 50% 16%, rgba(87,200,77,.08), transparent 34%),
    linear-gradient(180deg, #f7faf8 0%, #ffffff 72%);
}
.steps-heading {
  margin-bottom: 28px;
}
.steps-heading h2 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(2.1rem, 3.35vw, 3.25rem);
}
.steps-heading .section-subtitle {
  margin-top: 10px;
}
.steps-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  left: 8.5%;
  right: 8.5%;
  top: 20px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(17,129,61,.16), rgba(87,200,77,.72), rgba(17,129,61,.16));
}
.steps-grid li {
  position: relative;
  min-width: 0;
  text-align: center;
  padding: 0 8px;
}
.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--green-dark);
  border: 2px solid #58bd59;
  box-shadow: 0 0 0 5px #f8fbf9, 0 6px 14px rgba(10,18,13,.06);
  font-weight: 900;
  position: relative;
  z-index: 2;
}
.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 26px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffffff, #eaf5ec);
  color: #147d3c;
  border: 1px solid #cce3d1;
  box-shadow: 0 12px 28px rgba(17,129,61,.07);
}
.step-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.steps-grid h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: -.015em;
}
.steps-grid p {
  margin: 0 auto;
  max-width: 205px;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.42;
}
.step-final .step-number {
  background: linear-gradient(135deg, #a3de54, var(--green));
  color: #0a120d;
  border-color: transparent;
}
.step-final .step-icon {
  color: #fff;
  border-color: #1c8c43;
  background: linear-gradient(145deg, #0f6f34, #22a34e);
  box-shadow: 0 16px 34px rgba(27,150,62,.22);
}
.steps-footer {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.steps-requirement {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 15px;
  border-radius: 999px;
  color: #44504a;
  background: #f5f9f6;
  border: 1px solid #dde9e0;
  font-size: .9rem;
}
.steps-requirement > span {
  color: var(--green-dark);
  font-weight: 900;
}
.steps-requirement strong { color: var(--ink); }
.steps-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.steps-cta {
  min-width: 210px;
  min-height: 50px;
}

.trust-section {
  background:
    radial-gradient(circle at 18% 40%, rgba(87,200,77,.13), transparent 28%),
    radial-gradient(circle at 82% 60%, rgba(152,214,80,.10), transparent 30%),
    linear-gradient(100deg, #06110b 0%, #0c2114 48%, #0a3a1c 100%);
  color: #fff;
  padding: 48px 0 50px;
}
.trust-heading {
  margin-bottom: 30px;
}
.trust-heading .eyebrow {
  margin-bottom: 8px;
}
.trust-heading h2 {
  margin: 0 auto;
  max-width: 720px;
  color: #fff;
  font-size: clamp(1.95rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}
.trust-grid article {
  min-width: 0;
  padding: 10px 22px 12px;
  border-right: 1px solid rgba(255,255,255,0.11);
}
.trust-grid article:first-child { padding-left: 10px; }
.trust-grid article:last-child {
  border-right: 0;
  padding-right: 10px;
}
.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: #b9eb67;
  border: 1px solid rgba(185,235,103,.22);
  background: rgba(255,255,255,.035);
}
.trust-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-grid h3 {
  margin: 0 0 8px;
  max-width: 210px;
  font-size: 1.04rem;
  line-height: 1.18;
  letter-spacing: -.012em;
}
.trust-grid p {
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: .92rem;
  line-height: 1.45;
}
.trust-price-wrap { margin: 0; }
.trust-price-card p span { display: block; }
.trust-price {
  display: block;
  margin-bottom: 0;
  color: #c8f176;
  font-size: 1.06rem;
  line-height: 1.2;
}

.trust-price-note {
  display: block;
  margin-top: 10px;
  max-width: 190px;
  color: rgba(255,255,255,.72);
  font-size: .86rem;
  line-height: 1.4;
}
.opportunities-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(92, 198, 97, .07), transparent 30%),
    linear-gradient(180deg, #f6faf7 0%, #eff7f1 100%);
  padding-top: 48px;
  padding-bottom: 30px;
  border-top: 1px solid #e1ece3;
}
.opportunities-heading {
  margin-bottom: 18px;
}
.opportunities-heading h2 {
  max-width: 720px;
  margin-inline: auto;
  font-size: clamp(2rem, 3.15vw, 3.15rem);
  line-height: 1.02;
}
.opportunities-heading .section-subtitle {
  max-width: 690px;
  margin-top: 10px;
  font-size: .98rem;
  line-height: 1.45;
}
.certificate-origin {
  width: fit-content;
  max-width: 100%;
  margin: 12px auto 0;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid #cfe3d2;
  background: rgba(255,255,255,.72);
  color: #2f6240;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.3;
}
.certificate-origin span {
  color: #16853d;
  font-weight: 900;
}
.opportunities-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 2px;
}
.opportunities-grid article {
  position: relative;
  min-width: 0;
  min-height: 178px;
  padding: 18px 17px 17px;
  border: 1px solid #d7e6da;
  border-radius: 22px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 12px 28px rgba(10,18,13,.055);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.opportunities-grid article::before {
  content: "";
  position: absolute;
  left: 19px;
  right: 19px;
  top: 0;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #7cd653, #37a94a);
}
@media (hover: hover) and (pointer: fine) {
  .opportunities-grid article:hover {
    transform: translateY(-2px);
    border-color: #bddbbf;
    box-shadow: 0 16px 36px rgba(10,18,13,.085);
  }
}
.opp-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  margin: 1px 0 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #198f43, #61c84f);
  box-shadow: 0 8px 18px rgba(39, 151, 67, .16);
}
.opp-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.opportunities-grid h3 {
  margin: 0 0 7px;
  font-size: 1.01rem;
  line-height: 1.2;
  letter-spacing: -.012em;
}
.opportunities-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.4;
}
.support-note {
  max-width: 1000px;
  margin: 14px auto 0;
  padding: 10px 13px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  border: 1px solid #cfe2d2;
  border-radius: 16px;
  background: rgba(236, 247, 238, .92);
  color: #46564c;
  text-align: left;
}
.support-note-icon {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1c8d43;
  color: #fff;
  font-size: .8rem;
  font-weight: 900;
}
.support-note p {
  margin: 1px 0 0;
  font-size: .82rem;
  line-height: 1.38;
}
.support-note strong { color: #23472e; }

@media (max-width: 1120px) {
  .opportunities-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .opportunities-grid article { min-height: 176px; }
}

@media (max-width: 760px) {
  .opportunities-section { padding-top: 42px; padding-bottom: 30px; }
  .opportunities-heading { margin-bottom: 18px; }
  .opportunities-heading h2 { font-size: clamp(1.9rem, 8.6vw, 2.45rem); }
  .certificate-origin { border-radius: 14px; }
  .opportunities-grid { grid-template-columns: 1fr; gap: 12px; }
  .opportunities-grid article { min-height: 0; padding: 18px 17px; }
  .opp-icon { width: 44px; height: 44px; margin-bottom: 12px; }
  .support-note { margin-top: 14px; }
}

.faq-shell {
  max-width: 1080px;
}
#duvidas {
  padding-top: 42px;
  padding-bottom: 66px;
}
.faq-heading {
  margin-bottom: 26px;
}
.faq-heading h2 {
  font-size: clamp(2.15rem, 3.6vw, 3.55rem);
}
.faq-heading .section-subtitle {
  margin-top: 10px;
  font-size: 1rem;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}
.faq-grid details {
  min-width: 0;
  background: rgba(255,255,255,.96);
  border: 1px solid #dbe6de;
  border-radius: 16px;
  padding: 0 18px;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.faq-grid details[open] {
  border-color: #b9d9bd;
  background: #fff;
  box-shadow: 0 10px 26px rgba(10,18,13,.06);
}
.faq-grid summary {
  list-style: none;
  cursor: pointer;
  min-height: 58px;
  padding: 16px 0;
  font-weight: 700;
  font-size: .98rem;
  color: #111814;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  line-height: 1.35;
}
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::after {
  content: "+";
  flex: 0 0 26px;
  width: 26px;
  text-align: center;
  color: var(--green-dark);
  font-size: 1.28rem;
  line-height: 1;
  font-weight: 500;
}
.faq-grid details[open] summary::after { content: "–"; }
.faq-grid p {
  margin: -1px 0 16px;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.48;
}
.faq-grid p strong {
  color: #294a34;
}
@media (hover: hover) and (pointer: fine) {
  .faq-grid details:hover {
    border-color: #c7ddca;
  }
}

.lead-section {
  background: radial-gradient(circle at 20% 50%, rgba(87,200,77,.18), transparent 28%), linear-gradient(135deg, #060f0b, #0c1b13 60%, #0c2115);
  color: #fff;
  padding-top: 72px;
  padding-bottom: 72px;
}
.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, .72fr);
  gap: clamp(42px, 6vw, 84px);
  align-items: center;
}
.lead-copy h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4.5vw, 4.05rem);
  line-height: .98;
  letter-spacing: -.04em;
}
.lead-copy p:not(.eyebrow) {
  color: rgba(255,255,255,0.88);
  font-size: 1.04rem;
  margin: 18px 0 0;
  max-width: 590px;
}
.lead-price {
  margin-top: 22px;
  width: fit-content;
  min-width: 250px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.11);
}
.lead-price span,
.lead-price small {
  display: block;
}
.lead-price span {
  color: rgba(255,255,255,.72);
  font-size: .88rem;
  font-weight: 700;
}
.lead-price strong {
  display: block;
  margin-top: 4px;
  color: #b9eb67;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -.035em;
}
.lead-price small {
  margin-top: 7px;
  color: rgba(255,255,255,.62);
  font-size: .78rem;
}
.lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.support-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.support-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 16px 18px;
}
.support-card strong {
  display: block;
  margin-bottom: 8px;
  color: #d3f47b;
}
.support-card a { color: #fff; font-weight: 700; }
.lead-form {
  background: #fff;
  color: var(--ink);
  border-radius: 28px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}
.form-kicker {
  margin: 0 0 6px;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  font-weight: 900;
}
.lead-form h3 {
  margin: 0;
  font-size: 1.85rem;
  letter-spacing: -.025em;
}
.form-intro {
  margin: 8px 0 22px;
  color: var(--muted);
}
.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.field label { font-weight: 700; }
.field input,
.field select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 16px;
}
.checkbox-field label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}
.checkbox-field input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
  padding: 0;
}
.form-note, .form-status { margin: 14px 0 0; }
.form-note { color: var(--muted); font-size: .86rem; line-height: 1.45; }
.form-status { min-height: 1.4em; font-weight: 700; }
.hp {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

@media (max-width: 1120px) {
  .lead-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: 650px; padding-bottom: 118px; }
  .hero-copy { max-width: 560px; }
  .hero-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-benefits li:nth-child(2n) { border-right: 0; }
  .hero-benefits li:nth-child(-n+2) { border-bottom: 1px solid #e0e8e2; padding-bottom: 18px; margin-bottom: 10px; }
  .area-grid,
  .trust-grid,
  .opportunities-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust-grid article:nth-child(2n),

  .trust-grid article { padding: 18px 22px; }
  .trust-grid article:first-child { padding-left: 22px; }
  .trust-grid article:last-child { padding-right: 22px; }
  .trust-grid article:last-child { grid-column: 1 / -1; max-width: 520px; justify-self: center; width: 100%; border-top: 1px solid rgba(255,255,255,.10); margin-top: 8px; }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 20px; }
  .steps-grid::before { display: none; }
  .step-number { margin-bottom: 12px; box-shadow: none; }
  .steps-grid li:last-child { grid-column: 1 / -1; max-width: 360px; justify-self: center; width: 100%; }
  .support-cards { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 24px, 1200px); }
  .nav-wrap {
    min-height: 68px;
    padding: 10px 0;
    flex-wrap: nowrap;
    justify-content: space-between;
    position: relative;
    gap: 10px;
  }
  .brand { font-size: 2.15rem; }
  .desktop-nav { display: none; }
  .mobile-nav-toggle { display: inline-flex; order: 3; }
  .mobile-nav:not([hidden]) { display: block; }
  .btn-top { width: auto; min-height: 44px; padding: 0 14px; border-radius: 12px; font-size: .86rem; margin-left: auto; }
  .hero {
    background:
      linear-gradient(180deg, rgba(7,15,11,.94) 0%, rgba(7,15,11,.91) 48%, rgba(7,15,11,.80) 100%),
      url('hero-banner.webp') 66% center / cover no-repeat,
      linear-gradient(135deg, var(--hero), var(--hero-2));
  }
  .hero-grid { min-height: 0; padding: 30px 0 96px; }
  .hero-copy { max-width: 100%; }
  .hero h1 { font-size: clamp(3.1rem, 15vw, 4.55rem); }
  .hero-lead { font-size: 1.02rem; max-width: 100%; }
  .hero-trust-inline { max-width: 100%; }
  .hero-price { width: 100%; justify-content: space-between; }
  .hero-curve { height: 58px; }
  .hero-benefits-section { padding: 16px 0 22px; }
  .hero-benefits,
  .area-grid,
  .faq-grid,
  .field-grid,
  .search-row,
  .trust-grid,
  .opportunities-grid,
  .steps-grid,
  .support-cards { grid-template-columns: 1fr; }
  .hero-benefits { padding: 16px; border-radius: 22px; }
  .hero-benefits li { padding: 14px 4px; border-right: 0 !important; border-bottom: 1px solid #e0e8e2; }
  .hero-benefits li:last-child { border-bottom: 0; }
  .hero-actions,
  .lead-actions,
  .steps-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn,
  .lead-actions .btn,
  .steps-actions .btn,
  .btn-outline-green,
  .btn-ghost,
  .btn-solid,
  .btn-outline { width: 100%; }
  .lead-price { width: 100%; }
  .lead-section { padding-top: 56px; padding-bottom: 56px; }
  .lead-form { padding: 24px 20px; border-radius: 24px; }
  .cookie-consent { left:12px; right:12px; bottom:12px; display:block; padding:14px; }
  .cookie-consent[hidden] { display:none; }
  .cookie-actions { margin-top:12px; justify-content:flex-end; flex-wrap:wrap; }
  .section { padding: 68px 0; }
  #areas { padding-top: 46px; }
  .area-badge { margin-top: -44px; }
  .trust-grid article,
  .opportunities-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding-bottom: 20px;
  }
  .trust-section { padding: 44px 0; }
  .trust-heading { margin-bottom: 24px; }
  .trust-heading h2 { font-size: clamp(1.8rem, 9vw, 2.35rem); }
  .trust-grid article,
  .trust-grid article:first-child,
  .trust-grid article:last-child {
    padding: 18px 4px;
    max-width: none;
    width: 100%;
    margin-top: 0;
    grid-column: auto;
  }
  .opportunities-grid article { border-bottom-color: var(--line); }
  .trust-grid article:last-child,
  .opportunities-grid article:last-child { border-bottom: 0; }
  .steps-section {
  scroll-margin-top: 94px; padding-top: 44px; padding-bottom: 58px; }
  .steps-heading { margin-bottom: 24px; }
  .steps-grid { grid-template-columns: 1fr; gap: 22px; }
  .steps-grid li,
  .steps-grid li:last-child { grid-column: auto; max-width: 420px; justify-self: center; width: 100%; }
  .step-icon { width: 68px; height: 68px; border-radius: 20px; }
  .step-number { margin-bottom: 10px; }
  .steps-grid p { max-width: 360px; }
  .steps-footer { margin-top: 24px; }
  .steps-requirement { border-radius: 16px; text-align: center; flex-wrap: wrap; }
  #duvidas { padding-top: 38px; padding-bottom: 54px; }
  .faq-heading { margin-bottom: 22px; }
  .faq-heading h2 { font-size: clamp(1.95rem, 8.5vw, 2.45rem); }
  .faq-grid { gap: 10px; }
  .faq-grid details { padding: 0 16px; }
  .faq-grid summary { min-height: 56px; padding: 14px 0; font-size: .95rem; gap: 18px; line-height: 1.34; }
  .faq-grid p { font-size: .92rem; }
}


.area-card, .catalog-search, .lead-form, .faq-grid details { transition: transform .18s ease, box-shadow .18s ease; }
.area-card:hover, .lead-form:hover { transform: translateY(-2px); box-shadow: 0 18px 48px rgba(10,18,13,.12); }

@media (max-width: 900px) {
  .course-tabs { grid-template-columns: 1fr; }
  .course-tab { min-height: 72px; }
  .course-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .catalog-search { padding: 16px; border-radius: 20px; }
  .search-row { grid-template-columns: 1fr; }
  .course-category { padding: 20px 16px; }
  .course-panel-head { align-items: flex-start; flex-direction: column; }
  .course-list { grid-template-columns: 1fr; }
  .course-item { min-height: 50px; }
  .course-category:not(.is-expanded):not(.search-visible) .course-item:nth-child(n+11) { display: none; }
}

/* Premium refinements — areas and catalog */
.btn-top {
  min-height: 50px;
  padding-inline: 20px;
  border-radius: 14px;
  font-size: .95rem;
}
.areas-heading { margin-bottom: 32px; }
.areas-heading .eyebrow { margin-bottom: 7px; }
.areas-heading h2 {
  font-size: clamp(2.2rem, 3.35vw, 3.35rem);
  line-height: 1.04;
}
.area-grid { gap: 22px; }
.area-card {
  display: flex;
  flex-direction: column;
  min-height: 328px;
  padding: 28px 26px 25px;
  border-color: #d5e3d8;
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(10,18,13,.065);
}
.area-card.accent { border-color: #d5e3d8; }
.area-badge {
  width: 64px;
  height: 64px;
  margin: -51px auto 16px;
  border-radius: 19px;
  background: linear-gradient(145deg, #168942, #31ad58);
  box-shadow: 0 9px 20px rgba(22,137,66,.18);
}
.area-badge svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.area-card h3 {
  font-size: 1.85rem;
  letter-spacing: -.025em;
}
.area-meta {
  margin-top: 8px;
  font-size: .96rem;
}
.area-count {
  margin-top: 8px;
  font-size: .98rem;
}
.area-desc {
  margin: 14px auto 18px;
  max-width: 300px;
  font-size: .96rem;
  line-height: 1.52;
}
.area-card a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  font-size: .96rem;
}
.course-tab-icon {
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: #f2f8f3;
  border: 1px solid #dce9de;
}
.course-tab-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.course-tab.is-active {
  background: linear-gradient(135deg, #0e7d38, #23a653);
}
.course-tab:nth-child(2).is-active,
.course-tab:nth-child(3).is-active {
  background: linear-gradient(135deg, #0e7d38, #23a653);
}
.course-tab.is-active .course-tab-icon {
  color: #fff;
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.20);
}
@media (max-width: 760px) {
  .areas-heading { margin-bottom: 28px; }
  .area-card { min-height: 0; padding: 26px 22px 22px; }
  .area-badge { margin-top: -47px; }
}

/* Unified line-icon system */
.step-icon svg, .trust-icon svg, .opp-icon svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.step-icon { font-size: 2.1rem; }
.trust-icon { font-size: 1.5rem; }
.opp-icon { font-size: 1.65rem; }

/* Refinamento v18: mais respiro entre título de áreas e cards */
#areas .section-heading { margin-bottom: 62px; }
@media (max-width: 760px) { #areas .section-heading { margin-bottom: 52px; } }


/* Catálogo — refinamento premium */
#catalogo .section-heading { margin-bottom: 30px; }
#catalogo .section-heading h2 {
  font-size: clamp(2.35rem, 3.6vw, 3.55rem);
  max-width: 850px;
  margin-inline: auto;
}
#catalogo .section-subtitle { max-width: 690px; }
.catalog-search {
  max-width: 900px;
  margin-bottom: 24px;
  padding: 15px 17px;
  border-radius: 20px;
  gap: 9px;
  box-shadow: 0 12px 34px rgba(10,18,13,.055);
}
.catalog-search-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.catalog-search label { font-size: 1rem; }
.catalog-search input {
  min-height: 54px;
  border-radius: 14px;
  background-position: 15px center;
}
.catalog-search .btn-ghost {
  min-height: 54px;
  padding-inline: 18px;
  border-radius: 14px;
  box-shadow: none;
}
.search-count {
  min-height: 0;
  text-align: right;
  font-size: .88rem;
  white-space: nowrap;
}
.course-browser { margin-top: 8px; }
.course-tabs { gap: 12px; margin-bottom: 16px; }
.course-tab {
  min-height: 82px;
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 9px 26px rgba(10,18,13,.045);
}
.course-tab:hover { box-shadow: 0 12px 30px rgba(10,18,13,.07); }
.course-tab.is-active,
.course-tab:nth-child(2).is-active,
.course-tab:nth-child(3).is-active {
  background: linear-gradient(135deg, #0b7534, #169348);
  box-shadow: 0 14px 34px rgba(17,129,61,.16);
}
.course-tab-icon { width: 44px; height: 44px; flex-basis: 44px; }
.course-tab-copy strong { font-size: 1.14rem; }
.course-tab-copy small { font-size: .88rem; }
.course-panels {
  border-radius: 24px;
  box-shadow: 0 16px 42px rgba(10,18,13,.065);
}
.course-category { padding: 26px; }
.course-panel-head {
  margin-bottom: 18px;
  padding-bottom: 17px;
  align-items: center;
}
.course-panel-head h3 { font-size: clamp(1.65rem, 2.7vw, 2.15rem); }
.course-panel-head p:not(.course-panel-kicker) { margin-top: 6px; font-size: .94rem; }
.course-panel-count {
  padding: 8px 12px;
  background: #f0f7f2;
  font-size: .84rem;
}
.course-list { gap: 8px 10px; }
.course-item {
  min-height: 48px;
  padding: 9px 38px 9px 31px;
  border-radius: 12px;
  background: #f8faf9;
  border-color: #e9efeb;
  font-size: .9rem;
  transition: border-color .16s ease, background .16s ease, transform .16s ease, box-shadow .16s ease;
}
.course-item::before { left: 13px; width: 6px; height: 6px; box-shadow: 0 0 0 3px rgba(67,182,91,.08); }
.course-item::after {
  content: "→";
  position: absolute;
  right: 14px;
  color: #14833f;
  opacity: .58;
  font-weight: 900;
  transition: transform .16s ease, opacity .16s ease;
}
.course-item:hover,
.course-item:focus-visible {
  background: #fff;
  border-color: #a9d3b2;
  box-shadow: 0 7px 18px rgba(17,129,61,.07);
  transform: translateY(-1px);
}
.course-item:hover::after,
.course-item:focus-visible::after { transform: translateX(3px); opacity: 1; }
.course-category:not(.is-expanded):not(.search-visible) .course-item:nth-child(n+13) { display: none; }
.course-expand {
  min-height: 46px;
  margin-top: 18px;
  border-radius: 13px;
  font-size: .93rem;
}
.selected-course {
  margin: -2px 0 16px;
  padding: 11px 13px;
  border: 1px solid #cde4d2;
  border-radius: 12px;
  background: #f2f9f3;
  color: #0f6f34;
  font-size: .92rem;
  font-weight: 700;
}
@media (max-width: 760px) {
  #catalogo .section-heading { margin-bottom: 24px; }
  #catalogo .section-heading h2 { font-size: clamp(2.1rem, 10vw, 2.85rem); }
  .catalog-search-head { align-items: flex-start; flex-direction: column; gap: 4px; }
  .search-count { text-align: left; white-space: normal; }
  .course-tab { min-height: 74px; }
  .course-category { padding: 20px 16px; }
  .course-list { grid-template-columns: 1fr; }
  .course-category:not(.is-expanded):not(.search-visible) .course-item:nth-child(n+9) { display: none; }
}


/* Refinamento v20 — carga horária como metadado, sem traço visual */
.course-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 12px;
}
.course-name {
  min-width: 0;
}
.course-hours {
  flex: none;
  margin-right: 10px;
  padding: 4px 8px;
  border: 1px solid #dce9df;
  border-radius: 999px;
  background: #f0f6f2;
  color: #4d6f58;
  font-size: .76rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 520px) {
  .course-item { column-gap: 8px; padding-right: 34px; }
  .course-hours { margin-right: 4px; font-size: .74rem; }
}

/* Refinamento v22 — aproximação real entre Áreas e Catálogo */
#areas {
  padding-bottom: 24px;
}
#catalogo {
  position: relative;
  padding-top: 42px;
  border-top: 1px solid rgba(17,129,61,.10);
  background:
    linear-gradient(180deg, #edf5ef 0%, #f3f7f4 16%, #f7f8f8 38%, #f7f8f8 100%);
}
#catalogo::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 52px;
  background: linear-gradient(180deg, rgba(17,129,61,.045), transparent);
  pointer-events: none;
}
#catalogo > .shell {
  position: relative;
  z-index: 1;
}
#catalogo .section-heading {
  margin-bottom: 20px;
}
#catalogo .section-heading .eyebrow {
  margin-bottom: 6px;
}
#catalogo .section-subtitle {
  margin-top: 9px;
}

@media (max-width: 760px) {
  #areas { padding-bottom: 18px; }
  #catalogo { padding-top: 34px; }
  #catalogo::before { height: 42px; }
  #catalogo .section-heading { margin-bottom: 18px; }
}

/* Refinamento v23 — catálogo mais limpo e CTA de limpeza contextual */
#catalogo .section-heading h2 {
  font-size: clamp(2.28rem, 3.42vw, 3.4rem);
}
#clear-search[hidden] {
  display: none !important;
}
.search-row:has(#clear-search[hidden]) {
  grid-template-columns: minmax(0, 1fr);
}
@supports not selector(:has(*)) {
  #clear-search[hidden] { display: none !important; }
}
@media (max-width: 760px) {
  #catalogo .section-heading h2 {
    font-size: clamp(2.02rem, 9.5vw, 2.72rem);
  }
}

@media (max-width: 1120px) {
  .opportunities-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .opportunities-grid article { min-height: 240px; }
}
@media (max-width: 820px) {
  .opportunities-section { padding-top: 58px; padding-bottom: 64px; }
  .opportunities-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .opportunities-grid article { min-height: 0; }
}
@media (max-width: 560px) {
  .opportunities-grid { grid-template-columns: 1fr; gap: 12px; }
  .opportunities-grid article { padding: 22px 20px; border-bottom: 1px solid #d7e6da !important; }
  .opportunities-heading h2 { font-size: clamp(2.1rem, 10vw, 3rem); }
  .support-note { padding: 14px; }
}

.steps-requirement { display: none !important; }

/* Navegação interna: compensa o cabeçalho fixo em todos os destinos. */
#catalogo,
#como-funciona,
#certificado,
#duvidas,
#interesse,
#areas,
#por-que-edune,
#para-que-serve {
  scroll-margin-top: 108px;
}
.anchor-alias {
  display: block;
  position: relative;
  top: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.desktop-nav a.is-current { color: #9fe06a; }

.checkbox-field label span { min-width: 0; }
.checkbox-field a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 750;
}
.legal-footer {
  background: #050b08;
  color: rgba(255,255,255,.68);
  border-top: 1px solid rgba(255,255,255,.08);
}
.legal-footer-inner {
  min-height: 72px;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: .88rem;
}
.legal-footer p { margin: 0; }
.legal-footer strong { color: rgba(255,255,255,.88); }
.legal-footer p span { margin: 0 4px; opacity: .45; }
.legal-footer nav { display: flex; flex-wrap: wrap; gap: 18px; }
.legal-footer a { color: rgba(255,255,255,.78); }
.legal-footer a:hover,
.legal-footer a:focus-visible { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 760px) {
  #catalogo,
  #como-funciona,
  #certificado,
  #duvidas,
  #interesse,
  #areas,
  #por-que-edune,
  #para-que-serve { scroll-margin-top: 88px; }
  .legal-footer-inner { flex-direction: column; align-items: flex-start; gap: 10px; padding: 20px 0; }
}

/* v43 — revisão final focada em mobile */
@media (max-width: 760px) {
  .topbar { backdrop-filter: blur(8px); }
  .nav-wrap {
    min-height: 62px;
    padding: 8px 0;
    gap: 8px;
  }
  .brand {
    font-size: 1.9rem;
    flex: 0 0 auto;
  }
  .btn-top {
    min-height: 40px;
    padding-inline: 12px;
    border-radius: 11px;
    font-size: .8rem;
    white-space: nowrap;
  }
  .mobile-nav-toggle {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }
  .mobile-nav {
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    padding: 8px;
    border-radius: 14px;
  }
  .mobile-nav a {
    padding: 12px 12px;
    font-size: .95rem;
  }
  .section {
    padding: 58px 0;
  }
  .hero-grid {
    padding: 24px 0 84px;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }
  .hero-lead {
    font-size: .98rem;
    line-height: 1.55;
  }
  .hero-price {
    align-items: flex-start;
    gap: 8px;
    padding: 14px 16px;
  }
  .hero-price strong {
    font-size: 1.7rem;
  }
  .hero-actions,
  .lead-actions,
  .steps-actions {
    gap: 10px;
  }
  .hero-trust-inline {
    padding: 14px 16px;
    border-radius: 18px;
  }
  .hero-trust-inline strong { font-size: .98rem; }
  .hero-trust-inline small { font-size: .82rem; line-height: 1.45; }
  .hero-benefits-section { padding: 12px 0 18px; }
  .hero-benefits { padding: 14px; gap: 0; }
  .hero-benefits li { padding: 12px 2px; }
  .hero-benefits strong { font-size: .98rem; }
  .hero-benefits small { font-size: .84rem; }

  #areas { padding-top: 42px; padding-bottom: 14px; }
  #areas .section-heading { margin-bottom: 44px; }
  .areas-heading h2 { font-size: clamp(1.95rem, 8.8vw, 2.55rem); }
  .area-grid { gap: 18px; }
  .area-card { padding: 24px 18px 20px; border-radius: 20px; }
  .area-badge { width: 58px; height: 58px; margin-top: -42px; margin-bottom: 14px; }
  .area-badge svg { width: 28px; height: 28px; }
  .area-card h3 { font-size: 1.6rem; }
  .area-meta, .area-count, .area-desc { font-size: .93rem; }
  .area-desc { margin: 12px auto 16px; line-height: 1.48; }

  #catalogo { padding-top: 28px; }
  #catalogo .section-heading h2 { font-size: clamp(1.95rem, 8.9vw, 2.55rem); }
  #catalogo .section-subtitle { font-size: .95rem; line-height: 1.5; }
  .catalog-search { padding: 14px; border-radius: 18px; margin-bottom: 18px; }
  .catalog-search label { font-size: .95rem; }
  .catalog-search input,
  .catalog-search .btn-ghost { min-height: 50px; }
  .course-tabs { gap: 10px; }
  .course-tab { min-height: 68px; padding: 12px 14px; border-radius: 16px; }
  .course-tab-icon { width: 40px; height: 40px; flex-basis: 40px; }
  .course-tab-copy strong { font-size: 1.02rem; }
  .course-tab-copy small { font-size: .82rem; }
  .course-panels { border-radius: 20px; }
  .course-category { padding: 18px 14px; }
  .course-panel-head { margin-bottom: 14px; padding-bottom: 14px; }
  .course-panel-head h3 { font-size: 1.45rem; }
  .course-panel-head p:not(.course-panel-kicker) { font-size: .9rem; }
  .course-panel-count { font-size: .79rem; }
  .course-list { gap: 8px; }
  .course-item {
    min-height: 46px;
    padding: 10px 34px 10px 29px;
    font-size: .88rem;
    line-height: 1.35;
  }
  .course-item::before { left: 12px; }
  .course-item::after { right: 12px; }
  .course-hours { font-size: .72rem; padding: 4px 7px; }
  .catalog-actions { margin-top: 14px; }

  .steps-section { padding-top: 40px; padding-bottom: 52px; }
  .steps-heading h2 { font-size: clamp(1.9rem, 8.8vw, 2.5rem); }
  .steps-grid { gap: 18px; }
  .steps-grid li,
  .steps-grid li:last-child {
    max-width: none;
    padding: 0 2px;
  }
  .step-number { margin-bottom: 8px; }
  .step-icon { width: 62px; height: 62px; border-radius: 18px; font-size: 1.9rem; }
  .steps-grid h3 { font-size: 1.15rem; }
  .steps-grid p { font-size: .93rem; line-height: 1.5; max-width: none; }
  .steps-footer { margin-top: 20px; }

  .trust-section { padding: 40px 0; }
  .trust-heading h2,
  .opportunities-heading h2,
  .faq-heading h2,
  .lead-copy h2 {
    font-size: clamp(1.95rem, 8.8vw, 2.6rem);
    line-height: 1.04;
  }
  .trust-grid article,
  .trust-grid article:first-child,
  .trust-grid article:last-child {
    padding: 16px 2px;
  }
  .trust-grid h3,
  .opportunities-grid h3 { font-size: 1.1rem; }
  .trust-grid p,
  .opportunities-grid p { font-size: .93rem; line-height: 1.5; }
  .trust-price { font-size: 1.5rem; }
  .trust-price-note { margin-top: 6px; }

  .opportunities-section { padding-top: 46px; padding-bottom: 54px; }
  .opportunities-heading { margin-bottom: 22px; }
  .opportunities-heading .section-subtitle { font-size: .95rem; line-height: 1.52; }
  .certificate-origin {
    padding: 10px 12px;
    font-size: .84rem;
    line-height: 1.45;
  }
  .opportunities-grid article { padding: 18px 16px !important; border-radius: 18px; }
  .support-note { margin-top: 16px; padding: 12px 14px; font-size: .84rem; line-height: 1.5; }

  #duvidas { padding-top: 34px; padding-bottom: 48px; }
  .faq-heading { margin-bottom: 18px; }
  .faq-heading .section-subtitle { font-size: .94rem; line-height: 1.5; }
  .faq-grid summary {
    min-height: 54px;
    padding: 13px 0;
    font-size: .92rem;
    gap: 14px;
  }
  .faq-grid summary::after { font-size: 1.25rem; }
  .faq-grid p { font-size: .9rem; line-height: 1.55; }

  .lead-section { padding-top: 52px; padding-bottom: 52px; }
  .lead-grid { gap: 24px; }
  .lead-copy p:not(.eyebrow) { font-size: .97rem; line-height: 1.55; margin-top: 14px; }
  .lead-price {
    margin-top: 18px;
    min-width: 0;
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
  }
  .lead-price strong { font-size: 1.75rem; }
  .lead-actions { margin-top: 20px; }
  .lead-form {
    padding: 22px 18px;
    border-radius: 22px;
  }
  .form-kicker { margin-bottom: 4px; }
  .lead-form h3 { font-size: 1.55rem; }
  .form-intro { margin: 6px 0 18px; font-size: .93rem; line-height: 1.5; }
  .field { margin-bottom: 14px; }
  .field label { font-size: .94rem; }
  .field input,
  .field select { min-height: 50px; border-radius: 13px; }
  .field-help,
  .form-note,
  .form-status { font-size: .82rem; line-height: 1.45; }
  .checkbox-field label { gap: 9px; font-size: .88rem; }

  .legal-footer-inner {
    align-items: flex-start;
    gap: 8px;
    font-size: .82rem;
  }
  .legal-footer nav { gap: 12px; }
  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 12px;
    border-radius: 14px;
  }
  .cookie-consent p { font-size: .82rem; line-height: 1.45; }
  .cookie-actions { justify-content: stretch; gap: 8px; }
  .cookie-actions .btn,
  .cookie-reject { width: 100%; justify-content: center; }
}

@media (max-width: 420px) {
  .shell { width: min(100% - 20px, 1200px); }
  .brand { font-size: 1.76rem; }
  .btn-top { padding-inline: 10px; font-size: .76rem; }
  .hero h1 { font-size: clamp(2.55rem, 12.2vw, 3.5rem); }
  .hero-price strong,
  .lead-price strong { font-size: 1.62rem; }
  .hero-benefits strong { font-size: .95rem; }
  .course-item { grid-template-columns: 1fr; row-gap: 6px; align-items: flex-start; padding-right: 28px; }
  .course-hours { justify-self: flex-start; margin-right: 0; }
}

/* v44 — robust mobile overrides after device QA */
nav[hidden] { display: none !important; }

@media (max-width: 860px) {
  .desktop-nav { display: none !important; }
  .nav-wrap {
    flex-wrap: nowrap !important;
    align-items: center !important;
  }
  .btn-top {
    display: inline-flex !important;
    width: auto !important;
    min-width: 0 !important;
    flex: 0 1 auto !important;
    order: 2;
    margin-left: auto;
  }
  .mobile-nav-toggle {
    display: inline-flex !important;
    order: 3;
    background: #ffffff;
    color: #0a140d;
    border-color: #ffffff;
    box-shadow: 0 8px 18px rgba(0,0,0,.18);
  }
  .mobile-nav-toggle span {
    background: #0a140d;
  }
  .mobile-nav:not([hidden]) { display: block !important; }
}

@media (max-width: 760px) {
  .topbar { overflow: visible; }
  .hero-trust-inline {
    display: block !important;
    max-width: 100% !important;
    padding: 12px 14px;
  }
  .hero-trust-inline .trust-seal {
    display: none !important;
  }
  .hero-trust-inline strong,
  .hero-trust-inline small {
    display: block !important;
  }
  .hero-trust-inline small {
    margin-top: 4px;
  }
}

/* v45 — ajustes finos das dobras no mobile */
@media (max-width: 760px) {
  .steps-grid { gap: 16px; }
  .steps-grid li,
  .steps-grid li:last-child {
    max-width: none !important;
    width: 100%;
    min-height: 116px;
    padding: 18px 18px 18px 94px;
    text-align: left;
    border: 1px solid #dbe7de;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #f7fbf8);
    box-shadow: 0 10px 24px rgba(10, 18, 13, .05);
  }
  .step-icon {
    position: absolute;
    left: 18px;
    top: 20px;
    margin: 0;
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }
  .step-number {
    position: absolute;
    left: 56px;
    top: 8px;
    margin: 0;
    width: 28px;
    height: 28px;
    font-size: .92rem;
    box-shadow: 0 0 0 3px #fff, 0 5px 12px rgba(10,18,13,.08);
  }
  .steps-grid h3 {
    margin: 4px 0 6px;
    font-size: 1.22rem;
    line-height: 1.12;
  }
  .steps-grid p {
    margin: 0;
    max-width: none;
    font-size: .95rem;
    line-height: 1.45;
  }

  .trust-grid article,
  .trust-grid article:first-child,
  .trust-grid article:last-child {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "icon text";
    gap: 0 14px;
    align-items: start;
    padding: 18px 0 !important;
    text-align: left;
  }
  .trust-icon {
    grid-area: icon;
    margin: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
  .trust-grid h3 {
    grid-area: title;
    max-width: none;
    margin: 2px 0 6px;
    font-size: 1.2rem;
    line-height: 1.12;
  }
  .trust-grid p,
  .trust-price-wrap {
    grid-area: text;
    max-width: none;
  }
  .trust-grid p {
    font-size: .95rem;
    line-height: 1.48;
  }
  .trust-price {
    font-size: 1.18rem;
  }
  .trust-price-note {
    max-width: none;
    margin-top: 6px;
    font-size: .9rem;
  }
}

/* v46 — acabamento final mobile */
@media (max-width: 760px) {
  /* Header: mais respiro entre CTA e menu */
  .btn-top {
    padding-inline: 10px !important;
    font-size: .78rem !important;
    min-height: 40px !important;
  }
  .mobile-nav-toggle {
    flex: 0 0 40px;
  }

  /* 5 passos: mesmos cards, só mais compactos */
  .steps-section { padding-top: 36px; padding-bottom: 46px; }
  .steps-heading { margin-bottom: 20px; }
  .steps-grid { gap: 14px; }
  .steps-grid li,
  .steps-grid li:last-child {
    min-height: 106px;
    padding: 15px 16px 15px 88px;
    border-radius: 20px;
  }
  .step-icon {
    left: 16px;
    top: 17px;
    width: 54px;
    height: 54px;
    border-radius: 17px;
  }
  .step-number {
    left: 51px;
    top: 7px;
    width: 27px;
    height: 27px;
    font-size: .88rem;
  }
  .steps-grid h3 {
    margin-top: 3px;
    margin-bottom: 5px;
    font-size: 1.16rem;
  }
  .steps-grid p {
    font-size: .92rem;
    line-height: 1.42;
  }
  .steps-footer { margin-top: 18px; }

  /* Por que Edune: alinhamento rigoroso */
  .trust-section { padding-top: 36px; padding-bottom: 38px; }
  .trust-heading { margin-bottom: 18px; }
  .trust-grid article,
  .trust-grid article:first-child,
  .trust-grid article:last-child {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 0 12px;
    padding: 16px 0 !important;
  }
  .trust-icon {
    width: 46px;
    height: 46px;
  }
  .trust-grid h3 {
    margin-top: 1px;
    margin-bottom: 5px;
    font-size: 1.14rem;
  }
  .trust-grid p {
    font-size: .92rem;
    line-height: 1.45;
  }

  /* Ritmo vertical das demais dobras */
  .opportunities-section { padding-top: 42px; padding-bottom: 48px; }
  #duvidas { padding-top: 30px; padding-bottom: 44px; }
  .lead-section { padding-top: 46px; padding-bottom: 46px; }
  .lead-grid { gap: 20px; }
}

@media (max-width: 420px) {
  .btn-top {
    padding-inline: 8px !important;
    font-size: .74rem !important;
  }
  .steps-grid li,
  .steps-grid li:last-child {
    padding-left: 82px;
  }
  .step-icon { left: 14px; }
  .step-number { left: 48px; }
}

/* v47 — destaque MEC + carga horária e metadados de compartilhamento */
.hero-trust-feature {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  width: min(520px, 100%);
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(146, 224, 92, .28);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(8,20,13,.82), rgba(11,35,20,.72));
  box-shadow: 0 14px 34px rgba(0,0,0,.16);
  backdrop-filter: blur(6px);
}
.hero-trust-feature .trust-seal {
  margin: 0;
  border-color: rgba(162, 227, 93, .45);
  color: #a8e75d;
}
.hero-trust-feature-copy {
  min-width: 0;
}
.hero-trust-feature-copy strong {
  font-size: .98rem;
}
.hero-trust-feature-copy small {
  font-size: .88rem;
  color: rgba(255,255,255,.78);
}
.hero-trust-feature-copy b {
  color: #a9e85f;
  font-weight: 850;
}
.hero-trust-hours {
  min-width: 92px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(113, 203, 67, .12);
  border: 1px solid rgba(156, 230, 92, .30);
  color: #c5ef84;
  text-align: center;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.1;
}

@media (max-width: 760px) {
  .hero-trust-inline.hero-trust-feature {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    padding: 13px 14px;
    border-radius: 16px;
  }
  .hero-trust-feature .trust-seal {
    display: grid !important;
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 12px;
  }
  .hero-trust-feature .trust-seal svg {
    width: 21px;
    height: 21px;
  }
  .hero-trust-feature-copy strong {
    font-size: .92rem;
  }
  .hero-trust-feature-copy small {
    font-size: .8rem;
    line-height: 1.35;
  }
  .hero-trust-hours {
    min-width: 74px;
    padding: 9px 8px;
    font-size: .78rem;
    border-radius: 12px;
  }
}

@media (max-width: 420px) {
  .hero-trust-inline.hero-trust-feature {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .hero-trust-hours {
    grid-column: 2;
    justify-self: start;
    margin-top: 2px;
  }
}

/* v48 — hero mobile: certificação como linha de confiança, não como quarto card */
@media (max-width: 760px) {
  .hero-trust-inline.hero-trust-feature {
    display: grid !important;
    grid-template-columns: 36px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 18px;
    padding: 15px 0 4px;
    border: 0;
    border-top: 1px solid rgba(255,255,255,.14);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
  .hero-trust-feature .trust-seal {
    display: grid !important;
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 50%;
    border-color: rgba(169,232,95,.34);
    background: rgba(169,232,95,.06);
  }
  .hero-trust-feature .trust-seal svg {
    width: 19px;
    height: 19px;
  }
  .hero-trust-feature-copy strong {
    font-size: .94rem;
    line-height: 1.15;
  }
  .hero-trust-feature-copy small {
    margin-top: 3px;
    font-size: .79rem;
    line-height: 1.35;
    color: rgba(255,255,255,.70);
  }
  .hero-trust-feature-copy b {
    color: #b4eb6b;
  }
  .hero-trust-hours {
    min-width: auto;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(169,232,95,.08);
    border: 1px solid rgba(169,232,95,.22);
    color: #c7ef8a;
    font-size: .76rem;
    line-height: 1;
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  .hero-trust-inline.hero-trust-feature {
    grid-template-columns: 34px minmax(0, 1fr);
  }
  .hero-trust-hours {
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
  }
}

/* v49 — desktop: número integrado ao ícone nos 5 passos */
@media (min-width: 1121px) {
  .steps-grid::before {
    top: 36px;
    left: 9%;
    right: 9%;
    height: 2px;
    background: linear-gradient(90deg, rgba(17,129,61,.14), rgba(87,200,77,.62), rgba(17,129,61,.14));
  }
  .steps-grid li {
    padding-top: 0;
  }
  .step-icon {
    position: relative;
    z-index: 2;
    margin: 0 auto 16px;
  }
  .step-number {
    position: absolute;
    z-index: 4;
    top: -8px;
    left: calc(50% + 18px);
    width: 30px;
    height: 30px;
    margin: 0;
    border-width: 2px;
    font-size: .88rem;
    box-shadow: 0 0 0 4px #f8fbf9, 0 5px 12px rgba(10,18,13,.08);
  }
  .step-final .step-number {
    box-shadow: 0 0 0 4px #f8fbf9, 0 6px 14px rgba(27,150,62,.14);
  }
}

/* v50 — hero: prova de confiança sem quarto card */
.hero-trust-inline.hero-trust-feature {
  width: fit-content;
  max-width: 100%;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  margin-top: 20px;
  padding: 15px 0 2px;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.hero-trust-feature .trust-seal {
  width: 36px;
  height: 36px;
  flex-basis: 36px;
  border-radius: 50%;
  border-color: rgba(169,232,95,.34);
  background: rgba(169,232,95,.06);
}
.hero-trust-feature .trust-seal svg {
  width: 20px;
  height: 20px;
}
.hero-trust-feature-copy strong {
  font-size: .96rem;
  line-height: 1.16;
}
.hero-trust-feature-copy small {
  margin-top: 3px;
  font-size: .84rem;
  line-height: 1.35;
  color: rgba(255,255,255,.72);
}
.hero-trust-feature-copy b {
  color: #b4eb6b;
}
.hero-trust-hours {
  min-width: auto;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(169,232,95,.08);
  border: 1px solid rgba(169,232,95,.22);
  color: #c7ef8a;
  font-size: .78rem;
  line-height: 1;
  white-space: nowrap;
}

.institutional-note {
  background: #f8fbf9;
  border-top: 1px solid #e1ebe4;
  color: #33443a;
}
.institutional-note-inner {
  min-height: 108px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
}
.institutional-note-seal {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #16853d;
  background: #eef7f0;
  border: 1px solid #d3e7d7;
}
.institutional-note-seal svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.institutional-note p {
  margin: 0;
  max-width: 760px;
  font-size: .94rem;
  line-height: 1.5;
}
.institutional-note strong { color: #0f7a39; }

@media (max-width: 760px) {
  .hero-trust-inline.hero-trust-feature {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    width: 100%;
    padding-top: 14px;
    margin-top: 18px;
  }
  .hero-trust-feature .trust-seal {
    width: 34px;
    height: 34px;
  }
  .hero-trust-feature-copy strong { font-size: .92rem; }
  .hero-trust-feature-copy small { font-size: .79rem; }
  .hero-trust-hours { padding: 7px 9px; font-size: .74rem; }
  .institutional-note-inner {
    min-height: 0;
    padding: 20px 0;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
  }
  .institutional-note-seal {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
  .institutional-note-seal svg { width: 21px; height: 21px; }
  .institutional-note p { font-size: .84rem; line-height: 1.5; }
}

@media (max-width: 420px) {
  .hero-trust-inline.hero-trust-feature {
    grid-template-columns: 32px minmax(0, 1fr);
  }
  .hero-trust-hours {
    grid-column: 2;
    justify-self: start;
    margin-top: 3px;
  }
}

/* v51 — ritmo vertical padronizado e equilibrado */
#areas {
  padding-bottom: 32px;
}

#catalogo {
  padding-top: 44px;
}

#catalogo .section-heading {
  margin-bottom: 28px;
}

.steps-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.trust-section {
  padding-top: 52px;
  padding-bottom: 52px;
}

.trust-grid {
  align-items: stretch;
}

.opportunities-section {
  padding-top: 58px;
  padding-bottom: 58px;
}

@media (max-width: 760px) {
  #areas { padding-bottom: 18px; }
  #catalogo { padding-top: 32px; }
  #catalogo .section-heading { margin-bottom: 20px; }
  .steps-section { padding-top: 42px; padding-bottom: 52px; }
  .trust-section { padding-top: 42px; padding-bottom: 42px; }
  .opportunities-section { padding-top: 46px; padding-bottom: 52px; }
}

/* v52 — ajuste fino de respiro entre Áreas e Catálogo */
#areas {
  padding-bottom: 42px;
}
#catalogo {
  padding-top: 54px;
}
#catalogo .section-heading {
  margin-bottom: 30px;
}

@media (max-width: 760px) {
  #areas {
    padding-bottom: 24px;
  }
  #catalogo {
    padding-top: 38px;
  }
  #catalogo .section-heading {
    margin-bottom: 22px;
  }
}


/* v53 — certificado: hierarquia mais comercial e menos carregada */
.opportunities-heading {
  margin-bottom: 30px;
}
.opportunities-heading .eyebrow {
  margin-bottom: 8px;
}
.opportunities-heading h2 {
  margin-bottom: 0;
}
.certificate-origin {
  width: fit-content;
  max-width: 100%;
  margin: 17px auto 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #315f3d;
  font-size: .92rem;
  font-weight: 760;
  line-height: 1.4;
}
.certificate-origin span {
  display: inline-block;
  margin-right: 5px;
  color: #16853d;
  font-weight: 900;
}
.opportunities-grid {
  margin-top: 0;
}
@media (max-width: 760px) {
  .opportunities-heading { margin-bottom: 24px; }
  .certificate-origin {
    margin-top: 14px;
    padding: 0;
    border-radius: 0;
    font-size: .86rem;
    line-height: 1.45;
  }
}

/* v55 — transição Catálogo → Como funciona */
#catalogo {
  padding-bottom: 40px;
}
.steps-section {
  padding-top: 46px;
}

@media (max-width: 760px) {
  #catalogo {
    padding-bottom: 28px;
  }
  .steps-section {
    padding-top: 38px;
  }
}

/* v57 — refinamento global de títulos no mobile */
@media (max-width: 760px) {
  .section-heading { margin-bottom: 28px; }
  .section-heading h2,
  .areas-heading h2,
  #catalogo .section-heading h2,
  .steps-heading h2,
  .trust-heading h2,
  .opportunities-heading h2,
  .faq-heading h2,
  .lead-copy h2 {
    font-size: clamp(1.78rem, 7.9vw, 2.28rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.032em;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11.2vw, 3.25rem) !important;
    line-height: .98;
    letter-spacing: -0.04em;
  }

  .section-subtitle,
  .section-heading p:not(.eyebrow),
  .hero-lead,
  #catalogo .section-subtitle,
  .faq-heading .section-subtitle,
  .opportunities-heading .section-subtitle {
    font-size: .96rem;
    line-height: 1.52;
    max-width: 34ch;
  }

  #areas .section-heading { margin-bottom: 34px; }
  #catalogo .section-heading { margin-bottom: 22px; }
  .steps-heading,
  .trust-heading,
  .opportunities-heading,
  .faq-heading {
    margin-bottom: 16px;
  }

  .hero-grid { padding: 22px 0 76px; }
}


/* v58 — hero clean test */
.hero-price-clean {
  display: flex;
  align-items: baseline;
  gap: 10px;
  width: fit-content;
  margin: 24px 0 0;
  color: rgba(255,255,255,.78);
  font-size: .95rem;
  font-weight: 700;
}
.hero-price-clean strong {
  color: #b9eb67;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -.03em;
}
.hero-trust-inline.hero-trust-feature.hero-trust-clean {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin-top: 22px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255,255,255,.11);
  background: transparent;
}
.hero-trust-clean .trust-seal {
  width: 32px;
  height: 32px;
  flex-basis: 32px;
}
.hero-trust-clean strong {
  font-size: .9rem;
  line-height: 1.35;
  color: rgba(255,255,255,.92);
}
.hero-trust-clean b { color: #b9eb67; }
.hero-trust-hours { display: none !important; }

@media (max-width: 760px) {
  .hero-price-clean {
    margin-top: 20px;
    font-size: .9rem;
    gap: 8px;
  }
  .hero-price-clean strong { font-size: 1.42rem; }
  .hero-trust-inline.hero-trust-feature.hero-trust-clean {
    display: flex !important;
    width: 100%;
    padding-top: 12px;
    margin-top: 18px;
  }
  .hero-trust-clean strong { font-size: .84rem; }
}

/* v60 — mais respiro entre busca e segmentos do catálogo */
#catalogo .catalog-search {
  margin-bottom: 24px;
}
#catalogo .course-tabs {
  margin-top: 0;
}
@media (max-width: 760px) {
  #catalogo .catalog-search {
    margin-bottom: 18px;
  }
}


/* v61 — rodapé enxuto de confiança e conversão */
.footer-premium {
  background: linear-gradient(180deg, #07110b 0%, #050b08 100%);
  color: rgba(255,255,255,.78);
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 1fr .8fr;
  gap: clamp(30px, 5vw, 72px);
  padding: 34px 0 28px;
  align-items: start;
}
.footer-brand {
  display: inline-block;
  color: #68d640;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
}
.footer-brand-block p {
  margin: 12px 0 0;
  max-width: 380px;
  color: rgba(255,255,255,.62);
  font-size: .9rem;
  line-height: 1.5;
}
.footer-label {
  display: block;
  margin-bottom: 12px;
  color: #a8e56e;
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  min-width: 0;
}
.footer-contact-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #8ce455;
  border: 1px solid rgba(140,228,85,.25);
  background: rgba(140,228,85,.06);
}
.footer-contact-icon svg,
.footer-social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-whatsapp strong,
.footer-whatsapp small { display: block; }
.footer-whatsapp strong { font-size: .9rem; }
.footer-whatsapp small { margin-top: 2px; color: #c8efac; font-size: .94rem; font-weight: 800; }
.footer-social-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 700;
}
.footer-social-links a span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #9fe06a;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.footer-whatsapp:hover,
.footer-whatsapp:focus-visible,
.footer-social-links a:hover,
.footer-social-links a:focus-visible { color: #fff; }
.footer-bottom {
  min-height: 64px;
  padding: 17px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .82rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom strong { color: rgba(255,255,255,.9); }
.footer-bottom p span { margin: 0 4px; opacity: .45; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-bottom a { color: rgba(255,255,255,.72); }
.footer-bottom a:hover,
.footer-bottom a:focus-visible { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 760px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 0 22px;
  }
  .footer-brand { font-size: 1.75rem; }
  .footer-brand-block p { margin-top: 9px; font-size: .86rem; }
  .footer-label { margin-bottom: 10px; }
  .footer-social-links { flex-direction: row; flex-wrap: wrap; gap: 10px 16px; }
  .footer-bottom {
    min-height: 0;
    padding: 18px 0 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: .79rem;
    line-height: 1.5;
  }
  .footer-bottom nav { gap: 12px; }
}


/* v62 — rodapé compacto para LP de conversão */
.footer-premium { display: none !important; }
.compact-footer {
  background: #050b08;
  color: rgba(255,255,255,.72);
  border-top: 1px solid rgba(255,255,255,.08);
}
.compact-footer-inner { padding: 18px 0 16px; }
.compact-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.compact-footer-row + .compact-footer-row {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.compact-footer p { margin: 0; font-size: .84rem; }
.compact-footer strong { color: rgba(255,255,255,.92); }
.compact-footer p span { margin: 0 4px; opacity: .45; }
.compact-footer nav { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; }
.compact-footer a { color: rgba(255,255,255,.82); font-size: .84rem; font-weight: 650; }
.compact-footer a:hover,
.compact-footer a:focus-visible { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.compact-footer-links a:first-child { color: #b9eb67; }
.compact-footer-legal { color: rgba(255,255,255,.58); }
@media (max-width: 760px) {
  .compact-footer-inner { padding: 16px 0; }
  .compact-footer-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .compact-footer-row + .compact-footer-row { margin-top: 9px; padding-top: 9px; }
  .compact-footer nav { gap: 12px; }
  .compact-footer p, .compact-footer a { font-size: .8rem; }
}

/* v63 — rodapé sutil com ícones sociais */
.subtle-footer {
  background:#050b08;
  color:rgba(255,255,255,.68);
  border-top:1px solid rgba(255,255,255,.08);
}
.subtle-footer-inner {
  min-height:68px;
  padding:15px 0;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);
  align-items:center;
  gap:24px;
}
.subtle-footer p { margin:0; font-size:.84rem; }
.subtle-footer strong { color:rgba(255,255,255,.9); }
.subtle-footer-company span { margin:0 4px; opacity:.4; }
.subtle-socials { display:flex; align-items:center; gap:8px; }
.subtle-socials a {
  width:34px; height:34px;
  display:grid; place-items:center;
  border:1px solid rgba(185,235,103,.18);
  border-radius:10px;
  color:#b9eb67;
  background:rgba(255,255,255,.025);
  transition:background .16s ease,border-color .16s ease,transform .16s ease;
}
.subtle-socials a:hover,.subtle-socials a:focus-visible {
  background:rgba(185,235,103,.07);
  border-color:rgba(185,235,103,.42);
  transform:translateY(-1px);
}
.subtle-socials svg {
  width:17px; height:17px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round;
}
.subtle-footer-legal { display:flex; justify-content:flex-end; gap:18px; flex-wrap:wrap; }
.subtle-footer-legal a { color:rgba(255,255,255,.74); font-size:.84rem; }
.subtle-footer-legal a:hover,.subtle-footer-legal a:focus-visible { color:#fff; text-decoration:underline; text-underline-offset:3px; }
@media (max-width:760px){
  .subtle-footer-inner {
    min-height:0; padding:16px 0;
    grid-template-columns:1fr auto;
    gap:12px 14px;
  }
  .subtle-footer-company { grid-column:1 / -1; font-size:.8rem !important; }
  .subtle-socials { justify-content:flex-start; }
  .subtle-footer-legal { justify-content:flex-end; gap:12px; }
  .subtle-footer-legal a { font-size:.78rem; }
  .subtle-socials a { width:32px; height:32px; border-radius:9px; }
}
@media (max-width:460px){
  .subtle-footer-inner { grid-template-columns:1fr; }
  .subtle-footer-company,.subtle-socials,.subtle-footer-legal { grid-column:1; }
  .subtle-footer-legal { justify-content:flex-start; }
}

/* v64 — catálogo mobile progressivo e cabeçalho centralizado */
@media (max-width: 760px) {
  .course-browser:not(.mobile-panel-open) .course-panels {
    display: none !important;
  }
  .course-browser.mobile-panel-open .course-panels {
    display: block;
  }
  .course-panel-head {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }
  .course-panel-head > div {
    width: 100%;
    text-align: center;
  }
  .course-panel-kicker,
  .course-panel-head h3,
  .course-panel-head p:not(.course-panel-kicker) {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .course-panel-count {
    align-self: center;
    margin: 0 auto;
  }
  .course-category:not(.is-expanded):not(.search-visible) .course-item:nth-child(n+7) {
    display: none;
  }
}

/* v65 — acabamento mobile: fechamento + rodapé */
@media (max-width: 760px) {
  /* Abertura da dobra final alinhada ao padrão dos demais headings */
  .lead-copy > .eyebrow,
  .lead-copy > h2,
  .lead-copy > p:not(.eyebrow) {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .lead-copy > p:not(.eyebrow) {
    max-width: 34ch;
  }

  /* Informativo institucional mais compacto no celular */
  .institutional-note-inner {
    min-height: 0;
    padding: 18px 0;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    text-align: left;
  }
  .institutional-note-seal {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
  .institutional-note-seal svg {
    width: 19px;
    height: 19px;
  }
  .institutional-note p {
    margin: 0;
    font-size: .82rem;
    line-height: 1.48;
  }

  /* Rodapé baixo, central e sem competição com o CTA */
  .subtle-footer-inner {
    min-height: 0;
    padding: 15px 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
    text-align: center;
  }
  .subtle-footer-company {
    font-size: .78rem !important;
    line-height: 1.45;
  }
  .subtle-socials {
    justify-content: center;
    gap: 9px;
  }
  .subtle-socials a {
    width: 31px;
    height: 31px;
    border-radius: 9px;
  }
  .subtle-socials svg {
    width: 16px;
    height: 16px;
  }
  .subtle-footer-legal {
    justify-content: center;
    gap: 14px;
  }
  .subtle-footer-legal a {
    font-size: .76rem;
  }
}

@media (max-width: 420px) {
  .institutional-note-inner {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 9px;
  }
  .institutional-note-seal {
    width: 34px;
    height: 34px;
  }
  .institutional-note p {
    font-size: .79rem;
  }
  .subtle-footer-company {
    max-width: 32ch;
  }
}
