/* ============================================================
   UNISOLAR — DESIGN SYSTEM
   Manual de marca: Azul Profundo + Amarelo Solar + Branco.
   Tipografia Nunito. Motivo visual: círculos e formas arredondadas.
   ============================================================ */

:root {
  /* ---- Cores da marca (manual de marca — não alterar sem pedido do cliente) ---- */
  --azul:        #0A3D62; /* Azul Profundo — credibilidade, conhecimento, segurança (base/âncora) */
  --azul-2:      #0F4E7A; /* variação mais clara, para gradientes/hover */
  --azul-dark:   #072A44; /* variação mais escura, footer / texto forte */
  --amarelo:     #FFCB05; /* Amarelo Solar — energia, otimismo, inovação (destaque/CTA) */
  --amarelo-dark:#E6B800;
  --branco:      #FFFFFF; /* clareza, leveza, acessibilidade */

  /* ---- Neutros de apoio (derivados do azul, para textos e fundos) ---- */
  --bg-soft:     #F3F7FA;
  --bg-soft-2:   #EAF1F6;
  --ink:         #10263A;
  --ink-soft:    #4D6B82;
  --line:        #DCE6EE;

  /* ---- Gradiente assinatura (só o azul — o amarelo fica sólido, de destaque) ---- */
  --grad-azul: linear-gradient(120deg, var(--azul) 0%, var(--azul-2) 100%);

  /* ---- Forma: motivo circular / arredondado, generoso ---- */
  --radius:     22px;
  --radius-sm:  14px;
  --radius-lg:  36px;
  --radius-full: 999px;

  --shadow:    0 24px 60px -24px rgba(10, 61, 98, 0.30);
  --shadow-sm: 0 12px 30px -14px rgba(10, 61, 98, 0.22);
  --shadow-yellow: 0 14px 32px -12px rgba(230, 184, 0, 0.55);

  --maxw: 1240px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Nunito", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--branco);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
:focus-visible {
  outline: 3px solid var(--amarelo);
  outline-offset: 4px;
}

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

h1, h2, h3, h4 { font-family: "Nunito", sans-serif; font-weight: 800; color: var(--azul); }

/* elemento circular decorativo reutilizável (motivo da marca) */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}

/* ============================================================
   AVISO DE CONTEÚDO DE EXEMPLO (usado em unidades/cursos)
   ============================================================ */
.aviso-exemplo {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #FFF9E0;
  border: 1.5px solid var(--amarelo);
  color: var(--azul-dark);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: .92rem;
  margin-bottom: 34px;
}
.aviso-exemplo strong { color: var(--azul); }
.aviso-exemplo svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--amarelo-dark); margin-top: 1px; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 84px;
}

/* logo oficial — assets/img/logo/ (logo-primary no header, logo-reverse no rodapé) */
.brand { display: flex; align-items: center; gap: 10px; }
.brand__logo { height: 34px; width: auto; display: block; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-size: .96rem;
  font-weight: 700;
  color: var(--azul);
  position: relative;
  padding: 6px 2px;
  transition: color .2s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 3px; border-radius: 999px; background: var(--amarelo); transition: width .25s ease;
}
.nav__link:hover { color: var(--azul-2); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__link.is-active { color: var(--azul-2); }
.nav__group { position: relative; }
.nav__link--parent { display: inline-flex; align-items: center; gap: 6px; }
.nav__link--parent > svg {
  width: 11px;
  height: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform .2s ease;
}
.nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 80;
  width: 230px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--branco);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav__dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}
.nav__dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 11px;
  color: var(--azul);
  font-size: .88rem;
  font-weight: 700;
}
.nav__dropdown a:hover, .nav__dropdown a.is-active {
  color: var(--azul-dark);
  background: #FFF5CB;
}
.nav__group:hover .nav__dropdown,
.nav__group:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav__group:hover .nav__link--parent > svg,
.nav__group:focus-within .nav__link--parent > svg { transform: rotate(180deg); }

.header__actions { display: flex; align-items: center; gap: 12px; }

.btn-aluno {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amarelo); color: var(--azul-dark);
  font-weight: 800; font-size: .9rem;
  padding: 12px 22px; border-radius: var(--radius-full);
  box-shadow: var(--shadow-yellow);
  transition: transform .2s, box-shadow .2s, filter .2s;
}
.btn-aluno:hover { transform: translateY(-2px); filter: brightness(1.03); }
.btn-aluno svg { width: 17px; height: 17px; }

.menu-toggle { display: none; width: 30px; height: 30px; }
.menu-toggle svg { width: 100%; height: 100%; stroke: var(--azul); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--branco);
  border-bottom: 1px solid var(--line);
  padding: 8px 24px 18px;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: 13px 4px; font-weight: 700; color: var(--azul);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 800; font-size: .98rem;
  padding: 16px 32px; border-radius: var(--radius-full);
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
}
.btn--primary { background: var(--amarelo); color: var(--azul-dark); box-shadow: var(--shadow-yellow); }
.btn--primary:hover { transform: translateY(-2px); filter: brightness(1.03); }
.btn--azul { background: var(--grad-azul); color: var(--branco); box-shadow: var(--shadow-sm); }
.btn--azul:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { background: var(--branco); color: var(--azul); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--azul); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--bg-soft); }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  align-items: center; gap: 50px; min-height: 560px; position: relative; z-index: 1;
  padding-block: 64px 76px;
}
.hero .blob--1 { width: 420px; height: 420px; background: rgba(10,61,98,.16); top: -140px; right: -100px; }
.hero .blob--2 { width: 300px; height: 300px; background: rgba(255,203,5,.30); bottom: -120px; left: -60px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .76rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--azul-2); font-weight: 800; margin-bottom: 20px;
  background: var(--bg-soft-2); padding: 8px 18px; border-radius: var(--radius-full);
}
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amarelo); }

.hero__title {
  font-weight: 800; font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  line-height: 1.08; letter-spacing: -0.015em; color: var(--azul);
}
.hero__title .grad { color: var(--amarelo-dark); }
.hero__sub { margin: 22px 0 0; max-width: 520px; font-size: 1.1rem; color: var(--ink-soft); }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

.hero__stats { display: flex; gap: 32px; margin-top: 46px; flex-wrap: wrap; }
.hero__stat { display: flex; align-items: center; gap: 12px; }
.hero__stat-icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255, 203, 5, .18);
  display: flex; align-items: center; justify-content: center;
}
.hero__stat-icon svg { width: 21px; height: 21px; color: var(--amarelo-dark); }
.hero__stat-num { font-size: 1.7rem; font-weight: 800; color: var(--azul); line-height: 1.1; }
.hero__stat-label { font-size: .8rem; color: var(--ink-soft); font-weight: 700; }

.hero__media {
  position: relative; background: var(--grad-azul); min-height: 460px;
  display: flex; align-items: center; justify-content: center;
}
.hero__photo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.hero__ring {
  position: absolute; width: 130%; height: 130%; top: -15%; left: -15%;
  z-index: 0; pointer-events: none;
}
.hero__media .float-badge {
  position: absolute; z-index: 2; background: var(--branco); border-radius: var(--radius-full);
  padding: 13px 20px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: .88rem; color: var(--azul); white-space: nowrap;
}
.hero__media .float-badge svg { width: 20px; height: 20px; color: var(--amarelo-dark); flex-shrink: 0; }
.hero__media .fb-1 { top: 8%; left: -9%; }
.hero__media .fb-2--dark {
  bottom: 7%; left: 50%; transform: translateX(-50%);
  background: var(--azul-dark); color: var(--branco);
}
.hero__media .fb-2--dark svg { color: var(--amarelo); }
.hero__media .fb-3 { top: 42%; right: -6%; }

/* ============================================================
   HERO INTERNO (catálogo / sobre / contato / unidades)
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(10, 61, 98, .16), transparent 34%),
    var(--bg-soft);
}
.page-hero .blob--1 {
  width: 420px;
  height: 420px;
  right: -160px;
  top: -180px;
  background: rgba(255, 203, 5, .22);
}
.page-hero__grid {
  min-height: 500px;
  padding-block: 58px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}
.page-hero__content { max-width: 650px; }
.page-hero__content .hero__title { font-size: clamp(2.35rem, 4.5vw, 3.7rem); }
.page-hero__content .hero__sub { max-width: 610px; }
.page-hero__cta { margin-top: 28px; }
.page-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.page-hero__proof span {
  padding: 8px 13px;
  border: 1px solid rgba(10, 61, 98, .12);
  border-radius: var(--radius-full);
  color: var(--azul);
  background: rgba(255, 255, 255, .72);
  font-size: .78rem;
  font-weight: 800;
}
.page-hero__proof b { color: var(--amarelo-dark); }
.page-hero__mosaic {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 360px;
  padding: 12px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 42px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.page-hero__mosaic img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 24px;
}
.page-hero__mosaic-main { grid-row: 1 / 3; }
.page-hero__single-media {
  min-height: 390px;
  position: relative;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.page-hero__single-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(7, 42, 68, .82) 100%);
  pointer-events: none;
}
.page-hero__single-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__media-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 25px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  color: var(--branco);
}
.page-hero__media-caption strong { font-size: 1.12rem; }
.page-hero__media-caption span { color: #DCEAF5; font-size: .88rem; }
.catalogo-section { padding-top: 36px; }
.contact-section { padding-top: 48px; }
.units-section { padding-top: 48px; }

/* ============================================================
   SEÇÃO / TÍTULOS
   ============================================================ */
.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section__head { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section__kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .76rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--amarelo-dark); font-weight: 800;
}
.section__title { font-size: clamp(2rem, 4vw, 2.7rem); margin-top: 10px; }
.section__sub { margin-top: 14px; color: var(--ink-soft); font-size: 1.05rem; }

/* ============================================================
   CARDS — diferenciais / valores
   ============================================================ */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.diff-card {
  background: var(--branco); border-radius: var(--radius-lg); padding: 32px 26px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.diff-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.diff-card__icon {
  width: 58px; height: 58px; border-radius: 50%; background: var(--bg-soft-2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.diff-card__icon svg { width: 28px; height: 28px; color: var(--azul); }
.diff-card__title { font-size: 1.1rem; margin-bottom: 8px; }
.diff-card__text { color: var(--ink-soft); font-size: .94rem; }

/* CTA duplo (unidades + cursos, home) */
.cta-duplo { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.cta-box {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  padding: 46px 40px; color: var(--branco); min-height: 260px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.cta-box--azul { background: var(--grad-azul); }
.cta-box--amarelo { background: var(--amarelo); color: var(--azul-dark); }
.cta-box h3 { color: inherit; font-size: 1.6rem; margin-bottom: 10px; }
.cta-box p { max-width: 380px; margin-bottom: 22px; opacity: .92; }
.cta-box--azul p { color: #DCEAF5; }
.cta-box--amarelo p { color: var(--azul-dark); opacity: .82; }

.cta-box__icon {
  width: 46px; height: 46px; border-radius: 50%; margin-bottom: 18px;
  background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center;
}
.cta-box__icon svg { width: 22px; height: 22px; color: var(--branco); }
.cta-box__icon--azul { background: rgba(10,61,98,.14); }
.cta-box__icon--azul svg { color: var(--azul-dark); }

/* depoimento (reaproveita .cta-box--azul como base) */
.cta-box--depoimento { justify-content: flex-start; }
.cta-box__depoimento-texto {
  font-size: 1.15rem; line-height: 1.5; color: var(--branco); opacity: .96;
  max-width: 460px; margin-bottom: 26px; font-weight: 600;
}
.cta-box__depoimento-autor { display: flex; flex-direction: column; gap: 3px; margin-bottom: 0; }
.cta-box__depoimento-autor strong { color: var(--branco); font-size: .96rem; }
.cta-box__depoimento-autor span { color: #BFD8E9; font-size: .84rem; }

/* ============================================================
   DESTAQUES (home): áreas de formação / empresas parceiras / por quê
   ============================================================ */
.destaques-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; align-items: start; }
.destaque-col__title { font-size: 1.25rem; margin-bottom: 8px; }
.destaque-col__sub { color: var(--ink-soft); font-size: .92rem; margin-bottom: 22px; }

.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.area-card {
  position: relative; min-height: 145px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 12px; padding: 16px;
  background: var(--branco); border: 1px solid var(--line); border-radius: var(--radius);
  font-size: .88rem; font-weight: 800; color: var(--azul); text-align: left;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: transparent; }
.area-card__photo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease;
}
.area-card:hover .area-card__photo { transform: scale(1.04); }
.area-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,42,68,.04) 10%, rgba(7,42,68,.92) 100%);
}
.area-card__label {
  position: relative; z-index: 1; display: flex; align-items: center; gap: 9px;
  color: var(--branco); line-height: 1.25;
}
.area-card__icon {
  width: 34px; height: 34px; flex: 0 0 34px; border-radius: 50%; background: var(--amarelo);
  display: flex; align-items: center; justify-content: center;
}
.area-card__icon svg { width: 17px; height: 17px; color: var(--azul-dark); }
.area-card--cta {
  background: var(--amarelo); color: var(--azul-dark); justify-content: center;
  align-items: flex-start; border-color: transparent;
}
.area-card--cta::after { display: none; }
.area-card--cta:hover { filter: brightness(1.03); }

.parceiros-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 12px; align-items: center;
  padding: 22px 20px; background: var(--branco); border: 1px solid var(--line);
  border-radius: var(--radius-lg); margin-bottom: 16px;
}
.parceiro-nome { font-weight: 800; color: var(--ink-soft); font-size: .96rem; letter-spacing: -0.01em; transition: color .2s; }
a.parceiro-nome:hover { color: var(--azul); }
.parceiro-cta { font-weight: 800; color: var(--azul); font-size: .86rem; display: inline-flex; align-items: center; gap: 4px; }
.parceiro-cta:hover { color: var(--azul-2); }

.aviso-exemplo--compacto { padding: 12px 14px; font-size: .8rem; margin-bottom: 0; gap: 9px; }
.aviso-exemplo--compacto svg { width: 18px; height: 18px; }

/* confirmação após envio do formulário de contato */
.form-sucesso__icon {
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(255, 203, 5, .22);
  display: inline-flex; align-items: center; justify-content: center;
}
.form-sucesso__icon svg { width: 30px; height: 30px; color: var(--amarelo-dark); }

.checklist { display: flex; flex-direction: column; gap: 16px; }
.checklist li { display: flex; align-items: center; gap: 12px; font-size: .95rem; color: var(--ink); font-weight: 600; }
.checklist__icon {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: rgba(10,61,98,.08); display: flex; align-items: center; justify-content: center;
}
.checklist__icon svg { width: 15px; height: 15px; color: var(--azul); }

/* ============================================================
   TOOLBAR / FILTROS (cursos + unidades)
   ============================================================ */
.toolbar { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.search { position: relative; flex: 1; min-width: 240px; display: flex; align-items: center; }
.search__icon { position: absolute; left: 18px; width: 19px; height: 19px; color: var(--ink-soft); pointer-events: none; }
.search input {
  width: 100%; font-size: .95rem; padding: 14px 20px 14px 48px;
  background: var(--branco); border: 1.5px solid var(--line); border-radius: var(--radius-full);
  transition: border-color .2s, box-shadow .2s;
}
.search input::placeholder { color: #9DB2C2; }
.search input:focus { outline: none; border-color: var(--azul); box-shadow: 0 0 0 4px rgba(10,61,98,.08); }

.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 11px; margin-bottom: 20px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: var(--radius-full);
  background: var(--branco); border: 1.5px solid var(--line);
  font-size: .9rem; font-weight: 700; color: var(--ink-soft);
  transition: all .2s;
}
.chip:hover { border-color: var(--azul); color: var(--azul); }
.chip.is-active { background: var(--azul); color: var(--branco); border-color: transparent; box-shadow: var(--shadow-sm); }

.results-count { text-align: center; font-size: .88rem; color: var(--ink-soft); margin-bottom: 26px; }
.results-count b { color: var(--azul); }

/* ============================================================
   GRID DE CURSOS
   ============================================================ */
.grid-cursos { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 24px; }
.curso-card {
  background: var(--branco); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.curso-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.curso-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft-2);
}
.curso-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(7,42,68,.78) 100%);
}
.curso-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.curso-card:hover .curso-card__media img { transform: scale(1.045); }
.curso-card__media-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  z-index: 1;
  color: var(--branco);
  font-size: .75rem;
  font-weight: 800;
}
.curso-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.curso-card__badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--radius-full);
}
.badge--azul { background: var(--bg-soft-2); color: var(--azul); }
.badge--amarelo { background: #FFF3C4; color: var(--amarelo-dark); }
.curso-card__name { font-size: 1.12rem; line-height: 1.28; color: var(--azul); }
.curso-card__resumo { color: var(--ink-soft); font-size: .92rem; flex: 1; }
.curso-card__link {
  margin-top: 10px; display: inline-flex; align-items: center; gap: 6px;
  color: var(--azul); font-weight: 800; font-size: .92rem;
}
.catalogo-more { display: flex; justify-content: center; margin-top: 34px; }
.catalogo-more [hidden] { display: none; }

/* ============================================================
   PÁGINA DE CURSO (detalhe)
   ============================================================ */
.curso-hero { background: var(--grad-azul); color: var(--branco); padding: 50px 0; position: relative; overflow: hidden; }
.curso-hero .blob--1 { width: 340px; height: 340px; background: rgba(255,203,5,.22); top: -140px; right: -60px; }
.curso-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr);
  align-items: center;
  gap: 54px;
  position: relative;
  z-index: 1;
}
.curso-hero__content { min-width: 0; }
.curso-breadcrumb { display: flex; gap: 8px; font-size: .84rem; color: #BFD8E9; margin-bottom: 18px; position: relative; z-index: 1; }
.curso-breadcrumb a:hover { color: var(--amarelo); }
.curso-hero__badges { display: flex; gap: 10px; margin-bottom: 16px; position: relative; z-index: 1; }
.badge--translucent { background: rgba(255,255,255,.15); color: var(--branco); }
.curso-hero h1 { color: var(--branco); font-size: clamp(1.9rem, 4vw, 2.6rem); position: relative; z-index: 1; }
.curso-hero__resumo { max-width: 640px; margin-top: 14px; color: #DCEAF5; font-size: 1.05rem; position: relative; z-index: 1; }
.curso-hero__cta { margin-top: 26px; }
.curso-hero__media {
  position: relative;
  isolation: isolate;
  min-height: 350px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 26px 60px -26px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.14);
}
.curso-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(7,42,68,.72) 100%);
}
.curso-hero__media img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.curso-hero__media-tag {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.94);
  color: var(--azul-dark);
  font-size: .78rem;
  font-weight: 800;
}
.curso-hero__media-tag svg { width: 17px; height: 17px; color: var(--amarelo-dark); }

.curso-detalhe-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 46px; padding: 56px 0; }
.curso-detalhe__desc { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 30px; }
.curso-detalhe h2 { font-size: 1.4rem; margin-bottom: 16px; }
.lista-diferenciais { display: flex; flex-direction: column; gap: 14px; }
.lista-diferenciais li { display: flex; gap: 12px; align-items: flex-start; }
.lista-diferenciais svg { width: 22px; height: 22px; color: var(--amarelo-dark); flex-shrink: 0; margin-top: 2px; }

.curso-sidebar {
  background: var(--bg-soft); border-radius: var(--radius-lg); padding: 30px 26px; height: fit-content;
  position: sticky; top: 110px;
}
.curso-sidebar__row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.curso-sidebar__row:last-of-type { border-bottom: none; }
.curso-sidebar__row span:first-child { color: var(--ink-soft); }
.curso-sidebar__row span:last-child { font-weight: 800; color: var(--azul); }
.curso-sidebar .btn { margin-top: 20px; }

/* ============================================================
   UNIDADES
   ============================================================ */
.grid-unidades { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.unidade-card {
  background: var(--branco); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.unidade-card__media {
  height: 180px; background: var(--grad-azul); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.unidade-card__media img { width: 100%; height: 100%; object-fit: cover; }
.unidade-card__media .placeholder-icon { width: 54px; height: 54px; color: rgba(255,255,255,.5); }
.unidade-card__body { padding: 26px 24px; }
.unidade-card__cidade { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--amarelo-dark); font-weight: 800; }
.unidade-card__nome { font-size: 1.3rem; color: var(--azul); margin: 6px 0 12px; }
.unidade-card__row { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--ink-soft); margin-bottom: 8px; }
.unidade-card__row svg { width: 18px; height: 18px; color: var(--azul); flex-shrink: 0; margin-top: 2px; }
.unidade-card--em-breve { background: var(--bg-soft); border: 1.5px dashed var(--line); box-shadow: none; }
.unidade-card--em-breve .unidade-card__body { display: flex; flex-direction: column; min-height: 260px; }
.unidade-card--em-breve .placeholder-icon { width: 40px; height: 40px; color: var(--ink-soft); margin: 0 auto; }
.location-visual {
  min-height: 390px;
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px) 0 0 / 48px 48px,
    var(--grad-azul);
  box-shadow: var(--shadow);
}
.location-visual::before,
.location-visual::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 110px;
  border: 3px solid rgba(255,255,255,.16);
  border-radius: 50%;
  transform: rotate(-18deg);
}
.location-visual::before { top: 68px; left: -60px; }
.location-visual::after { right: -50px; bottom: 32px; }
.location-visual__sun {
  position: absolute;
  right: 42px;
  top: 34px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--amarelo);
  box-shadow: var(--shadow-yellow);
}
.location-visual__pin {
  position: absolute;
  left: 50%;
  top: 43%;
  width: 72px;
  height: 72px;
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 50% 50% 50% 10px;
  background: var(--amarelo);
  box-shadow: 0 24px 40px -18px rgba(0,0,0,.6);
}
.location-visual__dot {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 24px;
  left: 24px;
  border-radius: 50%;
  background: var(--azul-dark);
}
.location-visual__card {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-sm);
}
.location-visual__card span { color: var(--amarelo-dark); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.location-visual__card strong { color: var(--azul); font-size: 1.05rem; }
.location-visual__card small { color: var(--ink-soft); }

/* ============================================================
   FORMULÁRIOS (contato / área do aluno)
   ============================================================ */
.form-card {
  background: var(--branco); border-radius: var(--radius-lg); padding: 40px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); max-width: 560px; margin: 0 auto;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .88rem; font-weight: 800; color: var(--azul); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); background: var(--bg-soft); transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--azul); box-shadow: 0 0 0 4px rgba(10,61,98,.08); background: var(--branco);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-foot-link { display: block; text-align: right; font-size: .86rem; color: var(--azul-2); font-weight: 700; margin-top: -8px; margin-bottom: 22px; }
.form-foot-link:hover { color: var(--amarelo-dark); }
.form-note {
  display: flex; gap: 10px; align-items: flex-start; background: var(--bg-soft);
  border-radius: var(--radius-sm); padding: 14px 16px; font-size: .84rem; color: var(--ink-soft); margin-top: 22px;
}
.form-note svg { width: 18px; height: 18px; color: var(--azul); flex-shrink: 0; margin-top: 1px; }

.login-wrap { padding: 54px 0 86px; background: var(--bg-soft); min-height: 68vh; display: flex; align-items: center; }
.login-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 650px;
  border-radius: 42px;
  overflow: hidden;
  background: var(--branco);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.login-visual { position: relative; min-height: 100%; overflow: hidden; }
.login-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,42,68,.05) 32%, rgba(7,42,68,.92) 100%);
}
.login-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.login-visual__overlay {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 42px;
  z-index: 1;
  color: var(--branco);
}
.eyebrow--dark { color: var(--branco); background: rgba(7,42,68,.72); }
.login-visual__overlay h2 { color: var(--branco); font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1.1; }
.login-visual__overlay p { max-width: 460px; margin-top: 12px; color: #DCEAF5; }
.login-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  max-width: none;
  margin: 0;
  padding: 58px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.login-header { text-align: center; margin-bottom: 32px; }
.login-header h1 { font-size: 1.8rem; }
.login-header p { color: var(--ink-soft); margin-top: 8px; }
.login-header .sun-mini {
  width: 64px; height: 64px; border-radius: 50%; background: var(--amarelo); margin: 0 auto 18px;
  box-shadow: var(--shadow-yellow);
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed; left: 50%; bottom: 30px; transform: translateX(-50%) translateY(20px);
  background: var(--azul-dark); color: var(--branco); padding: 14px 26px; border-radius: var(--radius-full);
  font-size: .9rem; font-weight: 700; box-shadow: var(--shadow); z-index: 300;
  opacity: 0; transition: opacity .25s ease, transform .25s ease; pointer-events: none;
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; background: var(--azul-dark); color: #CFE0EC; padding: 70px 0 30px; border-radius: 60px 60px 0 0; margin-top: -30px; overflow: hidden; }
.footer .blob--1 { width: 320px; height: 320px; background: rgba(255,203,5,.10); bottom: -160px; right: -60px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; position: relative; z-index: 1; }
.footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer__brand .brand__logo { height: 30px; }
.footer__text { color: #9FB9CC; font-size: .92rem; max-width: 300px; }
.footer__title { font-weight: 800; margin-bottom: 16px; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--amarelo); }
.footer__list li { margin-bottom: 11px; }
.footer__list a, .footer__contact-item { display: flex; align-items: flex-start; gap: 9px; color: #9FB9CC; font-size: .92rem; transition: color .2s; }
.footer__list a:hover { color: var(--amarelo); }
.footer__contact-item svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; color: var(--amarelo); }
.footer__socials { display: flex; gap: 10px; margin-top: 6px; }
.footer__social-btn {
  width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(255,255,255,.16); color: #CFE0EC; transition: all .2s;
}
.footer__social-btn svg { width: 18px; height: 18px; fill: currentColor; }
.footer__social-btn:hover { background: var(--amarelo); color: var(--azul-dark); border-color: transparent; transform: translateY(-2px); }
.footer__divider { height: 1px; background: rgba(255,255,255,.1); margin: 40px 0 22px; position: relative; z-index: 1; }
.footer__bottom { text-align: center; font-size: .82rem; color: #7E9CB2; position: relative; z-index: 1; }

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.wpp-float {
  position: fixed; bottom: 22px; right: 22px; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.6); z-index: 60; transition: transform .2s;
}
.wpp-float:hover { transform: scale(1.08); }
.wpp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; min-height: auto; gap: 30px; padding-block: 40px 56px; }
  .hero__content { text-align: center; }
  .hero .eyebrow, .hero__cta, .hero__stats { justify-content: center; }
  .hero__sub { margin-inline: auto; }
  .hero__media { min-height: 340px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-duplo { grid-template-columns: 1fr; }
  .curso-detalhe-grid { grid-template-columns: 1fr; }
  .curso-sidebar { position: static; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .destaques-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero__media .float-badge { font-size: .8rem; padding: 11px 16px; }
  .hero__media .fb-3 { right: -3%; }
  .page-hero__grid { grid-template-columns: 1fr; gap: 34px; padding-block: 48px; }
  .page-hero__content { max-width: 760px; }
  .page-hero__mosaic, .page-hero__single-media, .location-visual { min-height: 340px; }
  .curso-hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .curso-hero__media { min-height: 320px; }
  .login-grid { grid-template-columns: 1fr; }
  .login-visual { min-height: 380px; }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
}
@media (max-width: 560px) {
  .header__inner { height: 70px; }
  .brand__logo { height: 28px; }
  .cards-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; text-align: left; }
  .section { padding: 56px 0; }
  .form-card { padding: 26px 20px; }
  .areas-grid { grid-template-columns: 1fr; }
  .parceiros-grid { grid-template-columns: 1fr; }
  .hero__media .fb-1, .hero__media .fb-2--dark, .hero__media .fb-3 { display: none; }
  .page-hero__grid { padding-block: 38px; }
  .page-hero__content .hero__title { font-size: 2.25rem; }
  .page-hero__mosaic { grid-template-columns: 1fr 1fr; min-height: 300px; border-radius: 30px; padding: 8px; gap: 8px; }
  .page-hero__mosaic img { border-radius: 18px; }
  .page-hero__single-media, .location-visual { min-height: 310px; border-radius: 30px; }
  .page-hero__media-caption { left: 20px; right: 20px; bottom: 20px; }
  .curso-hero { padding: 36px 0; }
  .curso-hero__grid { gap: 28px; }
  .curso-hero__media { min-height: 260px; border-radius: 26px; }
  .curso-breadcrumb { flex-wrap: wrap; }
  .grid-cursos { grid-template-columns: 1fr; }
  .login-wrap { padding-top: 28px; }
  .login-grid { border-radius: 30px; }
  .login-visual { min-height: 320px; }
  .login-visual__overlay { left: 24px; right: 24px; bottom: 26px; }
  .login-card { padding: 34px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
