/* ============================================================
   TOKENS
============================================================ */
:root {
  --cor-principal:  #92bada;
  --cor-rosa:       #faada5;
  --cor-azul-bebe:  #b7e7f3;
  --cor-amarelo:    #FFF699;
  --cor-verde:      #B6EEA7;

  --bg-page:        #ffffff;
  --bg-alt:         #f4f6f8;
  --bg-card:        #ffffff;
  --bg-navbar:      #ffffff;
  --bg-accordion:   #ffffff;
  --bg-footer:      #1a2636;

  --tx-primary:     #2c3e50;
  --tx-secondary:   #4a6070;
  --tx-muted:       #6b8299;

  --bd-color:       #dee2e6;

  --shadow-sm:  0 2px 12px rgba(44,62,80,0.07);
  --shadow-md:  0 8px 28px rgba(44,62,80,0.14);

  --navbar-bd:   rgba(0,0,0,0.07);
  --radius-card: 10px;
}

/* ============================================================
   BASE
============================================================ */
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--tx-primary);
  background: var(--bg-page);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--tx-primary);
}

p { color: var(--tx-secondary); }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  background: var(--bg-navbar);
  border-bottom: 1px solid var(--navbar-bd);
  transition: box-shadow 0.3s;
  padding: 0.6rem 0;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.12); }

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.navbar-brand img.brand-logo { height: 38px; }

.brand-text-wrap .brand-main {
  display: block;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--cor-principal);
  line-height: 1.1;
}
.brand-text-wrap .brand-sub {
  display: block;
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--tx-muted);
  letter-spacing: 0.04em;
}

.nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--tx-primary) !important;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.9rem !important;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--cor-principal) !important; }

.btn-nav-cta {
  background: var(--tx-primary);
  color: #fff !important;
  border-radius: 4px;
  padding: 0.42rem 1.2rem !important;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}
.btn-nav-cta:hover { background: var(--cor-principal); }

.navbar-toggler { border-color: var(--bd-color) !important; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(100,120,140,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   HERO
============================================================ */
.hero {
  background: linear-gradient(140deg, #071626 0%, #0c1e3a 30%, #112b50 60%, #1a3d6b 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(146,186,218,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at 10% 80%, rgba(182,238,167,0.07) 0%, transparent 55%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(146,186,218,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  animation: scrollBounce 1.8s ease-in-out infinite;
  cursor: pointer;
  z-index: 10;
}
.hero-scroll-hint:hover { color: rgba(255,255,255,0.6); text-decoration: none; }
.hero-scroll-hint i { font-size: 1.1rem; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

.hero-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(146,186,218,0.18);
  border: 1px solid rgba(146,186,218,0.28);
  border-radius: 50px;
  padding: 0.38rem 1rem;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.0;
}

.hero-title-accent {
  color: var(--cor-azul-bebe);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  font-weight: 400;
  color: rgba(183,231,243,0.85);
  line-height: 1.6;
  max-width: 480px;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 530px;
  line-height: 1.8;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 0.3rem 0.8rem;
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
  margin: 0.2rem 0.15rem;
  border: 1px solid rgba(255,255,255,0.15);
}

.hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-cta-nota {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.btn-hero {
  background: var(--cor-amarelo);
  color: #1a2d3e;
  border-radius: 6px;
  padding: 0.95rem 2.4rem;
  font-weight: 900;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.04em;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 4px 24px rgba(255,246,153,0.25);
}
.btn-hero:hover {
  background: #fff;
  color: #1a2d3e;
  box-shadow: 0 8px 32px rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.hero-video-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.07);
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 3.5rem;
    text-align: center;
  }
  .hero-tag { margin: 0 auto; }
  .hero-subtitle { max-width: 100%; }
  .hero-desc,
  .hero-bv-text { max-width: 100%; }
  .hero-cta-wrap { justify-content: center; }
  .hero::after { display: none; }
  .hero-scroll-hint { display: none; }
}

@media (max-width: 575px) {
  .hero { padding-top: 80px; }
  .btn-hero { width: 100%; justify-content: center; }
  .hero-cta-nota { display: none; }
}

/* ============================================================
   RÉGUA DE LOGOS
============================================================ */
.section-regua {
  background: var(--bg-page);
  border-top: 1px solid var(--bd-color);
  border-bottom: 1px solid var(--bd-color);
  padding: 1.2rem 0;
}
.regua-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tx-muted);
  white-space: nowrap;
}
.regua-divider { width: 1px; background: var(--bd-color); align-self: stretch; height: 32px; }

.regua-img {
  max-height: 52px;
  max-width: 100%;
  object-fit: contain;
}

.regua-fallback-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.regua-fallback-item i { color: var(--tx-muted); }
.regua-fallback-item span {
  font-weight: 700;
  color: var(--tx-primary);
  font-size: 0.88rem;
}

/* ============================================================
   EM NÚMEROS
============================================================ */
.section-numeros {
  background: #1a2636;
}

.stat-item {
  text-align: center;
  padding: 2.8rem 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 18%; bottom: 18%;
  width: 1px;
  background: rgba(255,255,255,0.09);
}
.stat-num {
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  display: block;
  color: var(--cor-principal);
  letter-spacing: -0.03em;
}
.stat-icon {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: var(--cor-verde);
  display: block;
}
.stat-label {
  font-size: 0.73rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.6rem;
  display: block;
}

/* ============================================================
   SECTION HEADER GENÉRICO
============================================================ */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cor-principal);
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 900;
  color: var(--tx-primary);
}
.section-underline {
  display: inline-block;
  width: 48px;
  height: 4px;
  background: var(--cor-principal);
  border-radius: 2px;
}

/* ============================================================
   OBJETIVOS
============================================================ */
.section-objetivos { background: var(--bg-page); }

.objetivo-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--tx-secondary);
}

.card-publico {
  border: none;
  border-radius: var(--radius-card);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid var(--cor-principal);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card-publico:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card-publico.rosa  { border-bottom-color: var(--cor-rosa); }
.card-publico.verde { border-bottom-color: var(--cor-verde); }

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 1rem;
  color: var(--tx-primary);
  transition: background 0.2s, color 0.2s;
}
.card-publico:hover .card-icon { background: var(--cor-principal); color: #fff; }
.card-publico.rosa:hover  .card-icon { background: var(--cor-rosa); color: #fff; }
.card-publico.verde:hover .card-icon { background: var(--cor-verde); color: #fff; }

.card-publico-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--tx-primary);
  margin-bottom: 0.4rem;
}
.card-publico-desc {
  font-size: 0.92rem;
  color: var(--tx-secondary);
  margin: 0;
}

/* ============================================================
   IMPACTO SOCIAL
============================================================ */
.section-impacto { background: var(--bg-alt); overflow: hidden; }

.impacto-img-col {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 440px;
  background: linear-gradient(135deg, #2a6090 0%, #4a8ab8 55%, #7ab0d0 100%);
}
.impacto-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.impacto-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(20,45,65,0.4) 0%, rgba(5,15,28,0.65) 100%);
}
.impacto-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  padding: 0.85rem 1.2rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  max-width: 200px;
}
.impacto-img-badge strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--cor-azul-bebe);
}

.impacto-stat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--cor-principal);
  transition: box-shadow 0.2s;
}
.impacto-stat:hover { box-shadow: var(--shadow-md); }
.impacto-stat.rosa  { border-left-color: var(--cor-rosa); }
.impacto-stat.verde { border-left-color: var(--cor-verde); }

.impacto-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  background: rgba(146,186,218,0.15);
  color: var(--cor-principal);
}
.impacto-stat.rosa  .impacto-stat-icon { background: rgba(250,173,165,0.15); color: #c06070; }
.impacto-stat.verde .impacto-stat-icon { background: rgba(182,238,167,0.15); color: #4a9040; }

.impacto-stat-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--tx-primary);
  line-height: 1.3;
}
.impacto-stat-desc {
  font-size: 0.82rem;
  color: var(--tx-muted);
  line-height: 1.45;
}

/* ============================================================
   MÓDULOS CARROSSEL
============================================================ */
.section-modulos { background: var(--bg-page); }

.card-modulo {
  border: none;
  border-radius: var(--radius-card);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card-modulo:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card-modulo-stripe { height: 7px; }
.stripe-1 { background: var(--cor-principal); }
.stripe-2 { background: var(--cor-rosa); }
.stripe-3 { background: var(--cor-azul-bebe); }
.stripe-4 { background: #d4c52b; }
.stripe-5 { background: var(--cor-verde); }

.card-modulo-body { padding: 1.4rem; }

.mod-roman {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tx-muted);
}
.mod-title {
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0.3rem 0 0.8rem;
  color: var(--tx-primary);
}
.mod-units { font-size: 0.82rem; color: var(--tx-muted); font-weight: 500; }

.badge-horas-mod {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--cor-amarelo);
  color: #2c3e50;
  font-weight: 700;
  font-size: 0.72rem;
  border-radius: 4px;
  padding: 0.25rem 0.6rem;
}

.card-total-horas {
  background: var(--tx-primary);
  min-height: 180px;
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.card-total-horas-icon {
  font-size: 2.2rem;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 0.5rem;
}
.card-total-horas-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.2rem;
}
.card-total-horas-num {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.card-total-horas-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.4rem;
}

.carousel-wrapper { position: relative; padding: 0 2.5rem; }

.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  background: var(--tx-primary);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.75;
  transition: opacity 0.2s;
}
.carousel-control-prev { left: -4px; }
.carousel-control-next { right: -4px; }
.carousel-control-prev:hover,
.carousel-control-next:hover { opacity: 1; }
.carousel-control-prev-icon,
.carousel-control-next-icon { width: 14px; height: 14px; }

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--bd-color);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.carousel-dot.active { background: var(--cor-principal); }

/* ============================================================
   MATRIZ CURRICULAR
============================================================ */
.section-matriz { background: var(--bg-alt); }

.accordion-modulo .accordion-item {
  border: 1px solid var(--bd-color) !important;
  border-radius: var(--radius-card) !important;
  margin-bottom: 0.7rem;
  overflow: hidden;
  background: var(--bg-card);
}

.accordion-modulo .accordion-button {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--tx-primary);
  border: none;
  border-radius: var(--radius-card) !important;
  padding: 1.1rem 1.3rem;
  transition: background 0.2s;
}
.accordion-modulo .accordion-button:not(.collapsed) {
  color: var(--tx-primary);
  box-shadow: none;
}

.mod-1 .accordion-button              { background: #d8ecf7; }
.mod-1 .accordion-button:not(.collapsed) { background: #c5e1f3; }
.mod-2 .accordion-button              { background: #fddbd7; }
.mod-2 .accordion-button:not(.collapsed) { background: #fac9c3; }
.mod-3 .accordion-button              { background: #d4f1fa; }
.mod-3 .accordion-button:not(.collapsed) { background: #bde8f6; }
.mod-4 .accordion-button              { background: #fefac8; }
.mod-4 .accordion-button:not(.collapsed) { background: #fef69a; }
.mod-5 .accordion-button              { background: #d5f3c8; }
.mod-5 .accordion-button:not(.collapsed) { background: #c0ebb0; }

.mod-num {
  font-size: 1.6rem;
  font-weight: 900;
  opacity: 0.18;
  margin-right: 0.6rem;
  line-height: 1;
  flex-shrink: 0;
  color: var(--tx-primary);
}

.badge-horas {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--cor-amarelo);
  color: #2c3e50;
  font-weight: 700;
  font-size: 0.72rem;
  border-radius: 4px;
  padding: 0.25rem 0.55rem;
}

.badge-horas-pending {
  background: transparent;
  border: 1px dashed var(--bd-color);
  color: var(--tx-muted);
}

.unidade-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--bd-color);
  font-size: 0.95rem;
  color: var(--tx-secondary);
}
.unidade-item:last-child { border-bottom: none; }
.unidade-item i { color: var(--tx-muted); flex-shrink: 0; margin-top: 3px; }

.accordion-body { background: var(--bg-accordion) !important; }

.banner-carga {
  background: var(--tx-primary);
  border-radius: var(--radius-card);
  color: #fff;
  padding: 1.4rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.banner-carga-text { font-size: 1.1rem; color: white; }
.banner-carga-num  { font-size: 2rem; font-weight: 900; margin-left: 0.4rem; }

.text-center {
    text-align: center !important;
}
/* ============================================================
   AUTORES CARROSSEL
============================================================ */
.section-autores { background: var(--bg-page); }

.card-autor {
  border: none;
  border-radius: var(--radius-card);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  padding: 1.6rem 1.1rem;
  text-align: center;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card-autor:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.autor-foto {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin: 0 auto 1rem;
  display: block;
  border: 3px solid var(--cor-principal);
  background: var(--bg-alt);
}

.autor-avatar-fallback {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--cor-principal);
  display: none;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  color: #fff;
  opacity: 0.8;
  border: 3px solid var(--cor-principal);
}

.autor-name {
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1.35;
  margin-bottom: 0.3rem;
  color: var(--tx-primary);
}
.autor-role {
  font-size: 0.78rem;
  color: var(--tx-muted);
  font-weight: 500;
  line-height: 1.5;
}
.autor-modulo {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--cor-principal);
  background: var(--bg-alt);
  border-radius: 4px;
  padding: 0.18rem 0.55rem;
}

/* ============================================================
   CTA — INSCREVA-SE
============================================================ */
.section-cta { position: relative; overflow: hidden; }

.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,35,52,0.88) 0%, rgba(8,18,30,0.94) 100%);
  z-index: 1;
}
.section-cta .cta-fallback-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a2e48 0%, #2a4a68 50%, #1e3a50 100%);
  z-index: 0;
}
.cta-content { position: relative; z-index: 2; }

.cta-tagline {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.6rem;
  display: block;
}
.cta-title {
  font-family: 'Jost', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.cta-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.8;
}

.btn-cta-principal {
  background: #fff;
  color: #1a2d3e;
  border: none;
  border-radius: 4px;
  padding: 1rem 3rem;
  font-family: 'Jost', sans-serif;
  font-weight: 900;
  font-size: 1.08rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}
.btn-cta-principal:hover { background: var(--cor-amarelo); color: #1a2d3e; }

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 0.92rem;
}
.cta-info-item i { font-size: 1.15rem; color: var(--cor-principal); }

.cta-divider {
  width: 1px;
  background: rgba(255,255,255,0.18);
}

/* ============================================================
   BOTÃO FLUTUANTE
============================================================ */
.btn-float-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: var(--tx-primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.4rem;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(26,45,62,0.35);
  transition: background 0.2s, box-shadow 0.2s;
  letter-spacing: 0.03em;
}
.btn-float-cta:hover {
  background: var(--cor-principal);
  color: #fff;
  box-shadow: 0 6px 24px rgba(146,186,218,0.5);
}

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--bg-footer); color: #8a9ab0; }
.footer-brand-logo { height: 52px; max-width: 240px; object-fit: contain; }
.footer-logo-text  { font-weight: 700; color: #fff; font-size: 0.88rem; }
.footer hr         { border-color: rgba(255,255,255,0.08); }
.footer-copy {
  font-size: 0.8rem;
  color: #5a6e80;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
  text-align: center;
}
.footer-copy-year { color: #4a5f72; }

/* ============================================================
   UTILITÁRIOS
============================================================ */
.hero-placeholder-img {
  width: 100%;
  max-width: 420px;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.footer-placeholder-logo { height: 42px; }

.footer-fallback-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-fallback-item i { color: #adb5bd; }

/* ============================================================
   HERO — BLOCO BOAS-VINDAS
============================================================ */
.hero-boas-vindas {
  background: var(--cor-amarelo);
  border-radius: var(--radius-card);
  padding: 2.2rem 2.5rem;
  box-shadow: 0 4px 20px rgba(44,62,80,0.10);
}

.hero-bv-titulo {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 700;
  color: #1a2d3e;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.hero-bv-titulo em {
  font-style: italic;
  font-weight: 800;
}

.hero-bv-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
  max-width: 530px;
}
.hero-bv-text strong {
  color: rgba(255,255,255,0.92);
  font-weight: 700;
}

.hero-video-real {
  border-radius: 0;
  width: 100%;
  display: block;
}

.hero-video-placeholder {
  background: rgba(26,45,62,0.08);
  border-radius: 8px;
  border: 2px dashed rgba(26,45,62,0.18);
  padding: 2.5rem 1.5rem;
  text-align: center;
  max-width: 560px;
}
.hero-video-inner { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.hero-video-icon  { font-size: 3rem; color: rgba(26,45,62,0.35); }
.hero-video-label { font-size: 0.88rem; font-weight: 600; color: rgba(26,45,62,0.5); letter-spacing: 0.04em; }

/* ============================================================
   TRILHAS DE APRENDIZAGEM
============================================================ */
.card-trilha {
  border: none;
  border-radius: var(--radius-card);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--cor-principal);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.card-trilha:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); color: inherit; text-decoration: none; }
.card-trilha-justica { border-top-color: var(--cor-rosa); }

.card-trilha-check {
  font-size: 1.6rem;
  color: var(--cor-principal);
  margin-bottom: 0.6rem;
}
.card-trilha-justica .card-trilha-check { color: #c06070; }

.card-trilha-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--tx-primary);
  line-height: 1.4;
  margin-bottom: 0.4rem;
}
.card-trilha-horas {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--tx-muted);
  margin-bottom: 0.6rem;
}
.card-trilha-desc {
  font-size: 0.95rem;
  color: var(--tx-secondary);
  flex-grow: 1;
  margin-bottom: 1rem;
}
.card-trilha-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cor-principal);
  text-decoration: none;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.4rem;
  line-height: 1.45;
  transition: color 0.2s;
}
.card-trilha-link:hover { color: #3d7aa8; text-decoration: underline; }
.card-trilha-link-justica { color: #c06070; }
.card-trilha-link-justica:hover { color: #9a3040; }

.trilhas-nota {
  font-size: 0.95rem;
  color: var(--tx-muted);
  font-style: italic;
}

/* ============================================================
   FIQUE ATENTO
============================================================ */
.section-fique-atento { background: var(--bg-alt); }

.fique-atento-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fique-atento-lista li {
  display: flex;
  align-items: flex-start;
  gap: 0.1rem;
  padding: 0.85rem 1.2rem;
  background: var(--bg-card);
  border-radius: 8px;
  margin-bottom: 0.6rem;
  box-shadow: var(--shadow-sm);
  font-size: 0.98rem;
  color: var(--tx-secondary);
  line-height: 1.5;
  border-left: 4px solid var(--bd-color);
  transition: box-shadow 0.2s;
}
.fique-atento-lista li:hover { box-shadow: var(--shadow-md); }
.fique-atento-lista li i { flex-shrink: 0; margin-top: 2px; font-size: 1.05rem; }
.fique-atento-destaque {
  border-left-color: #e07b00 !important;
  background: #fff8ec !important;
  color: var(--tx-primary) !important;
}

.fique-atento-encerramento {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 1.8rem 2rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--cor-principal);
}
.fique-atento-encerramento p {
  font-size: 1rem;
  color: var(--tx-secondary);
  line-height: 1.75;
}

/* ============================================================
   TRILHA DETALHE (Objetivo + Matriz por trilha)
============================================================ */
.section-trilha-detalhe { background: var(--bg-page); }
.section-trilha-justica { background: var(--bg-alt); }

.btn-inscreva-trilha {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cor-principal);
  color: #1a2d3e;
  border-radius: 4px;
  padding: 0.9rem 2.4rem;
  font-weight: 900;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(146,186,218,0.3);
}
.btn-inscreva-trilha:hover { background: #6ba4c8; color: #fff; box-shadow: 0 6px 20px rgba(146,186,218,0.5); }
.btn-inscreva-trilha-justica { background: var(--cor-rosa); }
.btn-inscreva-trilha-justica:hover { background: #e08a80; color: #fff; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 767px) {
  body { font-size: 1rem; }
  .hero { min-height: auto; padding-top: 88px; padding-bottom: 2.5rem; }
  .carousel-wrapper { padding: 0 1.5rem; }
  .carousel-control-prev { left: -6px; }
  .carousel-control-next { right: -6px; }
  .stat-item { padding: 2rem 0.75rem; }
  .btn-float-cta { bottom: 1.2rem; right: 1.2rem; padding: 0.65rem 1.1rem; font-size: 0.82rem; }
  .impacto-img-col { min-height: 280px; }
}

@media (max-width: 991px) {
  .cta-divider { display: none; }
}
