:root {
  /* CORES PRINCIPAIS */
  --cor-azul: #052b72;
  --cor-azul-2: #073a92;
  --cor-azul-3: #031a49;
  --cor-amarelo: #ffd21a;
  --cor-amarelo-2: #ffbf00;
  --cor-branco: #ffffff;
  --cor-texto: #1b1b1b;
  --cor-cinza: #6f7890;
  --cor-borda: #e4e8f0;
  --cor-fundo: #f7f8fb;

  /* CORES AUXILIARES */
  --cor-cinza-2: #7a8498;
  --cor-cinza-3: #71809a;
  --cor-fundo-claro: #f5f7fb;
  --cor-amarelo-gradiente-1: #ffd728;
  --cor-amarelo-gradiente-2: #ffbd10;
  --cor-azul-gradiente-1: #0c3c8e;
  --cor-azul-gradiente-2: #061f59;
  --cor-azul-agenda-1: #0c3d8d;
  --cor-azul-agenda-2: #061f56;
  --cor-azul-numeros-1: #041b4e;
  --cor-azul-numeros-2: #093d8e;
  --cor-azul-cta-1: #0b3e8c;
  --cor-footer: #04163e;
  --cor-whatsapp: #25d366;
  --cor-modal-1: #08255c;
  --cor-modal-2: #0c479e;
  --cor-transparente: transparent;

  /* TRANSPARÊNCIAS BRANCAS */
  --branco-035: rgba(255, 255, 255, 0.035);
  --branco-07: rgba(255, 255, 255, 0.07);
  --branco-08: rgba(255, 255, 255, 0.08);
  --branco-10: rgba(255, 255, 255, 0.1);
  --branco-11: rgba(255, 255, 255, 0.11);
  --branco-12: rgba(255, 255, 255, 0.12);
  --branco-16: rgba(255, 255, 255, 0.16);
  --branco-18: rgba(255, 255, 255, 0.18);
  --branco-20: rgba(255, 255, 255, 0.2);
  --branco-35: rgba(255, 255, 255, 0.35);

  /* TRANSPARÊNCIAS AZUIS / ESCURAS */
  --hero-azul-98: rgba(3, 22, 61, 0.98);
  --hero-azul-97: rgba(3, 22, 61, 0.97);
  --hero-azul-94: rgba(5, 43, 114, 0.94);
  --hero-azul-93: rgba(5, 43, 114, 0.93);
  --hero-azul-80: rgba(5, 43, 114, 0.8);
  --hero-azul-60: rgba(5, 43, 114, 0.6);
  --hero-azul-18: rgba(5, 43, 114, 0.18);
  --hero-pessoa-74: rgba(3, 27, 73, 0.74);
  --video-azul-20: rgba(3, 28, 75, 0.2);
  --video-azul-55: rgba(3, 28, 75, 0.55);
  --overlay-modal: rgba(2, 13, 38, 0.82);
  --overlay-menu: rgba(2, 13, 38, 0.62);

  /* TRANSPARÊNCIAS AMARELAS */
  --amarelo-55: rgba(255, 210, 26, 0.55);
  --amarelo-30: rgba(255, 210, 26, 0.3);
  --amarelo-22: rgba(255, 210, 26, 0.22);
  --amarelo-035: rgba(255, 210, 26, 0.035);
  --amarelo-02: rgba(255, 210, 26, 0.02);

  /* SOMBRAS */
  --preto-28: rgba(0, 0, 0, 0.28);
  --preto-25: rgba(0, 0, 0, 0.25);
  --preto-24: rgba(0, 0, 0, 0.24);
  --preto-22: rgba(0, 0, 0, 0.22);
  --preto-12: rgba(0, 0, 0, 0.12);
  --preto-05: rgba(0, 0, 0, 0.05);
  --preto-04: rgba(0, 0, 0, 0.04);
  --sombra-base: 0 15px 40px rgba(8, 34, 84, 0.1);
  --sombra-header: 0 4px 20px var(--preto-12);
  --sombra-botao: 0 10px 25px var(--amarelo-22);
  --sombra-card: 0 18px 40px var(--preto-24);
  --sombra-flutuante: 0 15px 35px var(--preto-22);
  --sombra-whatsapp: 0 14px 34px var(--preto-25);
  --sombra-menu: -20px 0 50px var(--preto-28);

  /* DIMENSÕES GLOBAIS */
  --altura-header: 78px;
  --largura-container: 1180px;
  --padding-container: 36px;
  --padding-container-mobile: 24px;
  --raio-circular: 50%;
  --raio-pill: 999px;
  --transicao-padrao: 0.2s;

  /* ALIASES LEGADOS */
  --azul: var(--cor-azul);
  --azul2: var(--cor-azul-2);
  --azul3: var(--cor-azul-3);
  --amarelo: var(--cor-amarelo);
  --amarelo2: var(--cor-amarelo-2);
  --branco: var(--cor-branco);
  --texto: var(--cor-texto);
  --cinza: var(--cor-cinza);
  --borda: var(--cor-borda);
  --fundo: var(--cor-fundo);
  --sombra: var(--sombra-base);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--texto);
  background: var(--cor-branco);
  line-height: 1.45;
  padding-top: var(--altura-header);
  font-size: 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* SCROLLBAR */
* {
  scrollbar-width: auto;
  scrollbar-color: var(--cor-azul) #d7dce5;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: #d7dce5;
}

*::-webkit-scrollbar-thumb {
  background: var(--cor-azul);
  border-radius: 999px;
  border: 1px solid #d7dce5;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--cor-amarelo);
}

.container {
  width: min(var(--largura-container), calc(100% - var(--padding-container)));
  margin: auto;
}

[data-lucide] {
  width: 1em;
  height: 1em;
  stroke-width: 2;
}

/* HEADER */
.header {
  height: var(--altura-header);
  background: linear-gradient(90deg, var(--azul3), var(--azul));
  color: var(--cor-branco);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 20px var(--preto-12);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 26px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--cor-branco);
  white-space: nowrap;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--amarelo);
  color: var(--azul);
}

.logo img {
  height: 40px;
}

.logo small {
  display: block;
  font-size: 8px;
  letter-spacing: 2px;
  font-weight: 600;
  opacity: 0.8;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;

  margin-left: auto;
  margin-right: auto;
}

.menu a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.9;
}

.menu a:hover {
  color: var(--amarelo);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 7px;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-yellow {
  background: var(--amarelo);
  color: var(--azul);
  box-shadow: 0 10px 25px var(--amarelo-22);
}

.btn-outline {
  border: 1px solid var(--branco-35);
  background: var(--branco-08);
  color: var(--cor-branco);
}

.menu-btn {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--cor-branco);
  cursor: pointer;
}

.menu-btn svg {
  width: 28px;
  height: 28px;
}

/* =========================
HERO
========================= */

/* =========================================================
   HERO PRINCIPAL
========================================================= */

.hero {
  position: relative;
  padding: 0;

  min-height: 650px;

  overflow: hidden;

  color: var(--cor-branco);

  background: var(--cor-azul);

  isolation: isolate;

}



/* =========================================================
   SWIPER
========================================================= */

.hero-swiper {
  width: 100%;
  height: 650px;
}

.hero-swiper .swiper-slide {
  position: relative;

  min-height: 650px;

  overflow: hidden;

  isolation: isolate;

  background-image: url('/imagens/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================================================
   FUNDO QUADRICULADO
========================================================= */
/* 
.hero-slide::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: -2;

  pointer-events: none;

  background-image:
    linear-gradient(to right, var(--branco-08) 1px, transparent 1px),
    linear-gradient(to bottom, var(--branco-08) 1px, transparent 1px);

  background-size: 42px 42px;

  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 42%,
    rgba(0, 0, 0, 0.85) 58%,
    rgba(0, 0, 0, 0.4) 76%,
    transparent 100%
  );

  mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 42%,
    rgba(0, 0, 0, 0.85) 58%,
    rgba(0, 0, 0, 0.4) 76%,
    transparent 100%
  );
} */

/* =========================================================
   EFEITO DE LUZ
========================================================= */

.hero-slide::after {
  content: "";

  position: absolute;

  width: 650px;
  height: 650px;

  left: -260px;
  top: -300px;

  border-radius: 50%;

  background: radial-gradient(circle, var(--branco-08) 0%, transparent 70%);

  pointer-events: none;

  z-index: -1;
}

/* =========================================================
   GRID
========================================================= */

.hero-grid {
  position: relative;

  z-index: 3;

  display: grid;

  grid-template-columns: 1.04fr 0.96fr;

  align-items: center;

  gap: 55px;

  min-height: 650px;
  height: 650px;
}

/* =========================================================
   CONTEÚDO
========================================================= */

.hero-copy {
  position: relative;

  z-index: 5;

  padding: 70px 0;
}

/* =========================================================
   BADGE
========================================================= */

.hero-badge {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 9px 13px;

  margin-bottom: 22px;

  border: 1px solid var(--branco-20);

  border-radius: 999px;

  background: var(--branco-08);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;
}

.hero-badge svg {
  width: 17px;
  height: 17px;

  color: var(--amarelo);
}

/* =========================================================
   KICKER
========================================================= */

.hero-kicker {
  font-size: 14px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 1.5px;
}

.hero-kicker strong {
  color: var(--amarelo);
}

/* =========================================================
   TÍTULO
========================================================= */

.hero h1 {
  margin: 8px 0 17px;

  color: var(--amarelo);

  font-size: clamp(66px, 7.5vw, 108px);

  line-height: 0.9;

  letter-spacing: -4px;

  font-weight: 700;
}

/* =========================================================
   SUBTÍTULO
========================================================= */

.hero-sub {
  max-width: 590px;

  font-size: 15px;

  font-weight: 700;

  line-height: 1.5;

  letter-spacing: 2px;

  text-transform: uppercase;
}

/* =========================================================
   BOTÕES
========================================================= */

.hero-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 30px;
}

/* =========================================================
   ESTATÍSTICAS
========================================================= */

.hero-stats {
  display: flex;

  flex-wrap: wrap;

  gap: 28px;

  margin-top: 36px;

  padding-top: 23px;

  border-top: 1px solid var(--branco-16);
}

.hero-stat {
  display: flex;

  align-items: center;

  gap: 10px;
}

.hero-stat .ico {
  color: var(--amarelo);
}

.hero-stat svg {
  width: 23px;
  height: 23px;
}

.hero-stat strong {
  display: block;

  font-size: 16px;
}

.hero-stat span {
  display: block;

  font-size: 9px;

  opacity: 0.72;
}

/* =========================================================
   VISUAL
========================================================= */

.hero-visual {
  position: relative;

  z-index: 4;

  height: 550px;

  align-self: end;
  bottom: 30px;
}

/* =========================================================
   WRAPPER DA IMAGEM
========================================================= */

.hero-person-wrap {
  position: absolute;

  right: 0;
  bottom: 0;

  width: 100%;
  height: 520px;

  z-index: 2;
}

/* =========================================================
   BORDA DECORATIVA ATRÁS DA FOTO
========================================================= */

.hero-person-wrap::before {
  content: "";

  position: absolute;

  inset: -18px 18px 18px -18px;

  border: 2px solid var(--amarelo-55);

  border-radius: 240px 40px 20px 20px;

  pointer-events: none;

  z-index: 0;
}

/* =========================================================
   CONTAINER DA FOTO
========================================================= */

.hero-person {
  position: relative;

  z-index: 1;

  width: 100%;
  height: 100%;

  overflow: hidden;

  border-radius: 240px 40px 20px 20px;

  box-shadow: 0 35px 80px var(--preto-22);

  background: var(--cor-azul);
}

/* =========================================================
   IMAGEM
========================================================= */

.hero-person img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;

  border-radius: inherit;
}

/* =========================================================
   DEGRADÊ SOBRE A FOTO
========================================================= */

.hero-person::after {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 2;

  pointer-events: none;

  background: linear-gradient(
    180deg,
    transparent 48%,
    rgba(3, 27, 73, 0.12) 62%,
    rgba(3, 27, 73, 0.78) 100%
  );
}

/* =========================================================
   ÍCONES FLUTUANTES
========================================================= */

.floating-icon {
  position: absolute;

  z-index: 6;

  display: grid;

  place-items: center;

  width: 50px;
  height: 50px;

  border-radius: 50%;

  background: var(--amarelo);

  color: var(--azul);

  box-shadow: 0 15px 35px var(--preto-22);
}

.floating-icon svg {
  width: 23px;
  height: 23px;
}

.float-1 {
  left: 0;

  top: 120px;
}

.float-2 {
  right: 0;

  top: 205px;

  background: var(--cor-branco);
}

.float-3 {
  right: 80px;

  bottom: 20px;
}

/* =========================================================
   CARD FLUTUANTE
========================================================= */

.hero-card {
  position: absolute;

  left: -28px;
  bottom: 42px;

  z-index: 7;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 14px 16px;

  border-radius: 13px;

  background: var(--cor-branco);

  color: var(--texto);

  box-shadow: 0 18px 40px var(--preto-24);
}

.hero-card .iconbox {
  display: grid;

  place-items: center;

  width: 42px;
  height: 42px;

  border-radius: 10px;

  background: var(--amarelo);

  color: var(--azul);
}

.hero-card small {
  display: block;

  font-size: 9px;

  color: var(--cor-cinza-2);
}

.hero-card strong {
  display: block;

  font-size: 12px;
}

/* =========================================================
   SETAS DO SWIPER
========================================================= */

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  z-index: 20;

  width: 46px;
  height: 46px;

  border: 1px solid var(--branco-18);

  border-radius: 50%;

  background: var(--branco-12);

  color: var(--cor-branco);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.hero-swiper .swiper-button-prev {
  left: 24px;
}

.hero-swiper .swiper-button-next {
  right: 24px;
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
  font-size: 16px;

  font-weight: 700;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
  background: var(--amarelo);

  color: var(--azul);

  transform: scale(1.05);
}

/* =========================================================
   PAGINAÇÃO
========================================================= */

.hero-swiper .swiper-pagination {
  z-index: 20;

  bottom: 22px !important;
}

.hero-swiper .swiper-pagination-bullet {
  width: 9px;
  height: 9px;

  background: var(--cor-branco);

  opacity: 0.45;

  transition:
    width 0.25s ease,
    opacity 0.25s ease,
    background 0.25s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
  width: 28px;

  border-radius: 10px;

  background: var(--amarelo);

  opacity: 1;
}

/* =========================================================
   ANIMAÇÃO
========================================================= */

.hero-swiper .swiper-slide-active .hero-copy > *,
.hero-swiper .swiper-slide-active .hero-visual {
  animation: heroEnter 0.65s ease both;
}

.hero-swiper .swiper-slide-active .hero-copy > *:nth-child(2) {
  animation-delay: 0.06s;
}

.hero-swiper .swiper-slide-active .hero-copy > *:nth-child(3) {
  animation-delay: 0.12s;
}

.hero-swiper .swiper-slide-active .hero-copy > *:nth-child(4) {
  animation-delay: 0.18s;
}

.hero-swiper .swiper-slide-active .hero-copy > *:nth-child(5) {
  animation-delay: 0.24s;
}

.hero-swiper .swiper-slide-active .hero-copy > *:nth-child(6) {
  animation-delay: 0.3s;
}

.hero-swiper .swiper-slide-active .hero-visual {
  animation-delay: 0.15s;
}

@keyframes heroEnter {
  from {
    opacity: 0;

    transform: translateY(20px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/* =========================================================
   TABLET
========================================================= */

/* =========================================================
   MOBILE
========================================================= */

/* =========================
   ABAS
========================= */

.segment-tabs {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 10px;

  margin: 28px 0 30px;
}

.segment {
  min-height: 95px;

  padding: 15px 10px;

  border: 1px solid var(--borda);

  border-radius: 11px;

  background: var(--cor-branco);

  color: var(--azul);

  cursor: pointer;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 8px;

  font-size: 13px;

  font-weight: 700;

  transition: 0.25s ease;
}

.segment:hover {
  border-color: var(--amarelo);

  transform: translateY(-2px);
}

.segment.active {
  border-color: var(--amarelo);

  background: var(--amarelo);

  color: var(--azul);
}

/* ÍCONE */

.seg-icon {
  width: 48px;
  height: 48px;

  border-radius: 48px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: var(--azul);

  color: var(--cor-branco);
}

.seg-icon svg {
  width: 36px;
  height: 36px;
}

.segment.active .seg-icon {
  background: var(--cor-branco);

  color: var(--azul);
}

/* =========================
   CONTEÚDO
========================= */

.segment-contents {
  position: relative;
}

.segment-content {
  display: none;

  grid-template-columns: 1fr 1fr;

  min-height: 390px;

  overflow: hidden;

  border-radius: 16px;

  background: var(--azul);

  box-shadow: var(--sombra);
}

.segment-content.active {
  display: grid;

  animation: segmentFade 0.35s ease;
}

/* =========================
   IMAGEM
========================= */

.segment-content-image {
  position: relative;

  min-height: 390px;

  overflow: hidden;
}

.segment-content-image::after {
  content: "";

  position: absolute;

  inset: 0;
}

.segment-content-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;
}

/* =========================
   TEXTO
========================= */

.segment-content-copy {
  padding: 50px;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  justify-content: center;
}

.segment-label {
  display: inline-flex;

  margin-bottom: 10px;

  padding: 6px 10px;

  border-radius: 30px;

  background: var(--amarelo);

  color: var(--azul);

  font-size: 11px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.5px;
}

.segment-content-copy h3 {
  margin: 0 0 15px;

  font-size: 32px;

  line-height: 1.1;

  color: var(--cor-branco);
}

.segment-content-copy p {
  max-width: 520px;

  margin: 0 0 13px;

  font-size: 13px;

  line-height: 1.7;

  color: var(--cor-branco);

  opacity: 0.85;
}

.segment-content-copy .btn {
  margin-top: 12px;
}

/* =========================
   ANIMAÇÃO
========================= */

@keyframes segmentFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   TABLET
========================= */

/* =========================
   MOBILE
========================= */

/* SECTION GENERAL */
section {
  padding: 30px 0;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 20px;
}

.section-title h2 {
  font-size: 23px;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  gap: 10px;
  align-items: center;
}

.section-title h2 svg {
  width: 20px;
  height: 20px;
}

.section-title a {
  font-size: 13px;
  font-weight: 700;
  color: var(--azul);
  display: flex;
  gap: 5px;
  align-items: center;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

.news-card {
  border: 1px solid var(--borda);
  border-radius: 12px;
  overflow: hidden;
  background: var(--cor-branco);
  box-shadow: 0 8px 22px var(--preto-05);

  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-thumb {
  height: 145px;
  overflow: hidden;
  flex-shrink: 0;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.news-body {
  padding: 14px;

  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-body h3 {
  font-size: 14px;
  margin: 5px 0 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;

  gap: 7px;
  padding: 9px 15px;

  margin-top: auto;

  font-size: 12px;
  font-weight: 700;
  line-height: 1;

  color: var(--branco);
  background: var(--cor-azul);

  border: 0;
  border-radius: 8px;

  text-decoration: none;
  cursor: pointer;

  transition: all 0.25s ease;
}

.text-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.text-link svg {
  width: 15px;
  height: 15px;
}

.news-date {
  display: flex;
  align-items: center;
  gap: 5px;

  margin-bottom: 5px;

  font-size: 12px;
  font-weight: 700;

  color: var(--cor-cinza-3);

  text-transform: uppercase;
}

.news-date svg {
  width: 13px;
  height: 13px;
}

/* AGENDA */
.agenda {
  padding-bottom: 35px;
}

.agenda-box {
  background: linear-gradient(
    135deg,
    var(--cor-azul-agenda-1),
    var(--cor-azul-agenda-2)
  );
  color: var(--cor-branco);
  border-radius: 14px;
  padding: 24px;
}

.agenda .section-title h2 {
  color: var(--amarelo);
}

.agenda .section-title a {
  color: var(--cor-branco);
}

.agenda-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.agenda-item {
  border: 1px solid var(--branco-20);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}

.agenda-item .date-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.agenda-item svg {
  width: 24px;
  height: 24px;
}

.agenda-item strong {
  font-size: 30px;
  color: var(--amarelo);
}

.agenda-item small {
  display: block;
  color: var(--amarelo);
  font-weight: 800;
  font-size: 12px;
}

.agenda-item p {
  font-size: 13px;
  margin-top: 8px;
}

/* VIDEO */
.video-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 38px;
  align-items: center;
}

.video-cover {
  min-height: 315px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(90deg, var(--video-azul-20), var(--video-azul-55)),
    url("https://images.unsplash.com/photo-1562774053-701939374585?auto=format&fit=crop&w=1100&q=85")
      center/cover;
  display: grid;
  place-items: center;
}

.play-btn {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 2px solid var(--cor-branco);
  background: var(--branco-18);
  color: var(--cor-branco);
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.play-btn svg {
  width: 34px;
  height: 34px;
}

.video-copy h3 {
  font-size: 28px;
}

.video-copy p {
  font-size: 14px;
  color: var(--cinza);
  margin: 14px 0 22px;
}

body.agenda-modal-open {
  overflow: hidden;
}

.agenda-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.agenda-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.agenda-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(5px);
}

.agenda-modal-dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: #fff;
  border-radius: 24px;
  padding: 38px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
}

.agenda-modal.is-open .agenda-modal-dialog {
  transform: translateY(0) scale(1);
}

.agenda-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #f1f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.agenda-modal-close svg {
  width: 20px;
  height: 20px;
}

.agenda-modal-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: #f1f3f5;
}

.agenda-modal-icon svg {
  width: 28px;
  height: 28px;
}

.agenda-modal-tag {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.65;
}

.agenda-modal-content h2 {
  margin: 0 45px 18px 0;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.15;
}

.agenda-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 16px 0 20px;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.agenda-modal-meta > div {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
}

.agenda-modal-meta svg {
  width: 17px;
  height: 17px;
}

.agenda-modal-texto {
  padding-top: 22px;
  font-size: 16px;
  line-height: 1.75;
}

.agenda-modal-texto:empty {
  display: none;
}

.calendar-event,
.calendar-event-card {
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.calendar-event-card {
  width: 100%;
}

/* NUMEROS */
.numbers {
  background: linear-gradient(
    90deg,
    var(--cor-azul-numeros-1),
    var(--cor-azul-numeros-2)
  );
  color: var(--cor-branco);
  padding: 30px 0;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.number-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  align-items: center;
}

.number-item .number-icon {
  grid-row: 1/4;
  color: var(--amarelo);
}

.number-item svg {
  width: 38px;
  height: 38px;
}

.number-item strong {
  font-size: 28px;
  color: var(--amarelo);
  line-height: 1;
}

.number-item span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.number-item small {
  font-size: 8px;
  opacity: 0.7;
}

/* APROVADOS */

.approved-card {
  min-height: 145px;
  border-radius: 11px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--cor-branco) 0 36%,
    var(--amarelo) 36%
  );
  display: grid;
  grid-template-columns: 135px minmax(0, 1fr);
  align-items: center;
}

.approved-image {
  width: 135px;
  height: 145px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: visible;
}

.approved-image img {
  width: 105px;
  height: 105px;

  min-width: 105px;
  min-height: 105px;

  border-radius: 50%;

  object-fit: cover;
  object-position: center;

  display: block;

  border: 3px solid var(--cor-branco);
}

.approved-content {
  min-width: 0;

  padding: 18px 15px 18px 5px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.approved-content h3 {
  margin: 0 0 5px;

  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;

  color: var(--azul);

  overflow-wrap: break-word;
}

.approved-content p {
  margin: 0;

  font-size: 10px;
  line-height: 1.35;

  font-weight: 700;
  text-transform: uppercase;

  overflow-wrap: break-word;
}

/* =========================
   DEPOIMENTOS
========================= */

.testimonials {
  width: 100%;
  padding: 35px 0 50px;
}

.testimonials .section-title {
  margin-bottom: 22px;
}

/* SWIPER */

.testimonial-swiper {
  position: relative;

  width: 100%;

  padding: 5px 48px 42px;

  box-sizing: border-box;

  overflow: hidden;
}

.testimonial-swiper .swiper-wrapper {
  align-items: stretch;
}

.testimonial-swiper .swiper-slide {
  height: auto;

  display: flex;
}

/* CARD */

.testimonial-card {
  width: 100%;

  min-height: 210px;

  padding: 24px;

  box-sizing: border-box;

  border: 1px solid var(--borda);

  border-radius: 14px;

  background: var(--cor-branco);

  box-shadow: 0 8px 24px var(--preto-04);

  display: flex;

  flex-direction: column;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
}

/* ASPAS */

.testimonial-quote {
  width: 40px;
  height: 40px;

  border-radius: 10px;

  background: var(--amarelo);

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--azul);

  margin-bottom: 18px;

  flex-shrink: 0;
}

.testimonial-quote svg {
  width: 22px;
  height: 22px;

  stroke-width: 2.2;
}

/* TEXTO */

.testimonial-body {
  font-size: 13px;

  line-height: 1.65;

  color: var(--cor-texto);

  margin: 0;

  flex: 1;
}

.testimonial-body p {
  margin: 0;
}

/* AUTOR */

.testimonial-footer {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-top: 22px;

  padding-top: 16px;

  border-top: 1px solid var(--borda);
}

/* AVATAR */

.testimonial-avatar {
  width: 46px;

  height: 46px;

  min-width: 46px;

  min-height: 46px;

  border-radius: 50%;

  overflow: hidden;

  background: var(--amarelo);

  flex: 0 0 46px;
}

.testimonial-avatar img {
  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;

  border-radius: 50%;
}

/* NOME */

.testimonial-author {
  min-width: 0;

  display: flex;

  flex-direction: column;
}

.testimonial-author strong {
  font-size: 13px;

  line-height: 1.3;

  color: var(--azul);

  font-weight: 800;
}

.testimonial-author span {
  margin-top: 3px;

  font-size: 12px;

  line-height: 1.3;

  color: var(--cinza);
}

/* SETAS */

.testimonial-prev,
.testimonial-next {
  width: 36px;

  height: 36px;

  margin-top: -18px;

  border-radius: 50%;

  background: var(--azul);

  color: var(--cor-branco);

  box-shadow: 0 5px 15px var(--preto-04);
}

.testimonial-prev {
  left: 0;
}

.testimonial-next {
  right: 0;
}

.testimonial-prev::after,
.testimonial-next::after {
  font-size: 14px;

  font-weight: 700;
}

/* BULLETS */

.testimonial-pagination {
  bottom: 5px !important;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 7px;

  height: 7px;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--amarelo);
}

/* =========================
   TABLET
========================= */

/* =========================
   MOBILE
========================= */

/* SWIPERS INTERNOS */
.agenda-swiper,
.approved-swiper,
.testimonial-swiper {
  position: relative;
  overflow: hidden;
  padding-bottom: 34px;
}

.agenda-swiper .swiper-slide,
.approved-swiper .swiper-slide,
.testimonial-swiper .swiper-slide {
  height: auto;
}

.agenda-swiper .agenda-item,
.approved-swiper .approved-card,
.testimonial-swiper .testimonial {
  height: 100%;
}

.agenda-swiper .swiper-pagination,
.approved-swiper .swiper-pagination,
.testimonial-swiper .swiper-pagination {
  bottom: 0 !important;
}

.agenda-swiper .swiper-pagination-bullet,
.approved-swiper .swiper-pagination-bullet,
.testimonial-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 0.35;
}

.agenda-swiper .swiper-pagination-bullet {
  background: var(--cor-branco);
}

.agenda-swiper .swiper-pagination-bullet-active,
.approved-swiper .swiper-pagination-bullet-active,
.testimonial-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--amarelo);
}

.approved-swiper,
.testimonial-swiper {
  padding-left: 54px;
  padding-right: 54px;
}

.approved-swiper .swiper-button-prev,
.approved-swiper .swiper-button-next,
.testimonial-swiper .swiper-button-prev,
.testimonial-swiper .swiper-button-next {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--azul);
  color: var(--cor-branco);
  top: 45%;
}

.approved-swiper .swiper-button-prev {
  left: 0;
}

.approved-swiper .swiper-button-next {
  right: 0;
}

.testimonial-swiper .swiper-button-prev {
  left: 0;
}

.testimonial-swiper .swiper-button-next {
  right: 0;
}

.approved-swiper .swiper-button-prev::after,
.approved-swiper .swiper-button-next::after,
.testimonial-swiper .swiper-button-prev::after,
.testimonial-swiper .swiper-button-next::after {
  font-size: 14px;
  font-weight: 700;
}

/* CTA / FOOTER */
.cta {
  background: linear-gradient(
    90deg,
    var(--cor-azul-cta-1),
    var(--cor-azul-agenda-2)
  );
  color: var(--cor-branco);
  padding: 25px 0;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cta h2 {
  color: var(--amarelo);
  font-size: 22px;
  text-transform: uppercase;
}

.footer {
  background: var(--cor-footer);
  color: var(--cor-branco);
  padding: 42px 0 26px;
}

.footer-top {
  display: grid;
  grid-template-columns: 268px repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-brand > p {
  max-width: 330px;
  font-size: 13px;
  line-height: 1.65;
  opacity: 0.72;
}

.footer-units {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.footer-unit {
  padding: 20px;
  border: 1px solid var(--branco-11);
  border-radius: 12px;
  background: var(--branco-035);
}

.footer-unit strong {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: var(--amarelo);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-unit strong svg {
  width: 18px;
  height: 18px;
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.82;
}

.footer-contact svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin-top: 1px;
  color: var(--amarelo);
}

.footer-contact a:hover {
  color: var(--amarelo);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--branco-10);
}

.footer-bottom p {
  opacity: 0.62;
}

.social {
  display: flex;
  gap: 12px;
}

.social a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--branco-07);
  transition: 0.2s;
}

.social a:hover {
  background: var(--amarelo);
  color: var(--azul);
  transform: translateY(-2px);
}

.social svg {
  width: 17px;
  height: 17px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--cor-whatsapp);
  color: var(--cor-branco);
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 14px 34px var(--preto-25);
  transition: 0.2s;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  filter: brightness(0.96);
}

.whatsapp-float img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  background: var(--overlay-modal);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 200;
}

.modal.show {
  display: flex;
}

.modal-box {
  width: min(800px, 95vw);
  background: var(--cor-branco);
  border-radius: 14px;
  padding: 16px;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  border: 0;
  background: var(--cor-branco);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}

.modal-close svg {
  width: 22px;
  height: 22px;
}

.fake-video {
  height: 420px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cor-modal-1), var(--cor-modal-2));
  color: var(--cor-branco);
  display: grid;
  place-items: center;
  text-align: center;
}

.fake-video svg {
  width: 70px;
  height: 70px;
}

/* MENU MOBILE LATERAL */
.menu-overlay {
  display: none;
}

/* =========================
   PÁGINA INTERNA - CURSO
========================= */

/* =========================
   HERO
========================= */

.course-detail-hero {
  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  align-items: center;

  gap: 50px;
}

/* IMAGEM */

.course-detail-image {
  width: 100%;

  height: 460px;

  overflow: hidden;

  border-radius: 18px;

  box-shadow: var(--sombra);
}

.course-detail-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;
}

/* TEXTO HERO */

.course-detail-intro {
  max-width: 520px;
}

.course-tag,
.course-section-tag {
  display: inline-flex;

  padding: 7px 12px;

  margin-bottom: 14px;

  border-radius: 30px;

  background: var(--amarelo);

  color: var(--azul);

  font-size: 12px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.5px;
}

.course-detail-intro h1 {
  margin: 0 0 18px;

  font-size: clamp(34px, 5vw, 52px);

  line-height: 1.05;

  color: var(--azul);
}

.course-lead {
  margin: 0 0 25px;

  font-size: 15px;

  line-height: 1.7;

  color: var(--cinza);
}

/* BOTÃO */

.course-cta {
  min-height: 46px;

  padding: 0 20px;

  border-radius: 9px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  background: var(--amarelo);

  color: var(--azul);

  text-decoration: none;

  font-size: 13px;

  font-weight: 700;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.course-cta:hover {
  transform: translateY(-2px);

  box-shadow: 0 8px 22px var(--preto-04);
}

.course-cta svg {
  width: 16px;
  height: 16px;
}

/* =========================
   CONTEÚDO
========================= */

.course-content {
  display: grid;

  grid-template-columns: minmax(0, 1fr) 320px;

  align-items: start;

  gap: 65px;
}

.course-content-main {
  max-width: 760px;
}

.course-content-main h2 {
  margin: 0 0 17px;

  font-size: 27px;

  line-height: 1.2;

  color: var(--azul);
}

.course-content-main p + h2 {
  margin-top: 42px;
}

.course-content-main p {
  margin: 0 0 19px;

  font-size: 14px;

  line-height: 1.85;

  color: var(--azul);
}

/* =========================
   DESTAQUE
========================= */

.course-highlight {
  display: flex;

  align-items: center;

  gap: 17px;

  margin: 35px 0;

  padding: 24px;

  border-radius: 13px;

  background: var(--azul);
}

.course-highlight-icon {
  width: 52px;
  height: 52px;

  min-width: 52px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: var(--amarelo);

  color: var(--azul);
}

.course-highlight-icon svg {
  width: 24px;
  height: 24px;
}

.course-highlight strong {
  display: block;

  margin-bottom: 5px;

  font-size: 14px;

  color: var(--amarelo);
}

.course-highlight p {
  margin: 0;

  font-size: 13px;

  line-height: 1.55;

  color: var(--cor-branco);
}

/* =========================
   LATERAL
========================= */

.course-sidebar {
  position: sticky;

  top: 110px;

  display: flex;

  flex-direction: column;

  gap: 18px;
}

/* CTA LATERAL */

.course-sidebar-box {
  padding: 28px;

  border-radius: 15px;

  background: var(--azul);

  color: var(--cor-branco);
}

.course-sidebar-icon {
  width: 48px;
  height: 48px;

  margin-bottom: 18px;

  border-radius: 12px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: var(--amarelo);

  color: var(--azul);
}

.course-sidebar-icon svg {
  width: 23px;
  height: 23px;
}

.course-sidebar-box h3 {
  margin: 0 0 10px;

  font-size: 20px;

  line-height: 1.2;

  color: var(--cor-branco);
}

.course-sidebar-box p {
  margin: 0 0 20px;

  font-size: 11px;

  line-height: 1.6;

  color: var(--cor-branco);

  opacity: 0.8;
}

.course-sidebar-box a {
  min-height: 42px;

  padding: 0 15px;

  border-radius: 8px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 7px;

  background: var(--amarelo);

  color: var(--azul);

  text-decoration: none;

  font-size: 9px;

  font-weight: 700;
}

.course-sidebar-box a svg {
  width: 15px;
  height: 15px;
}

/* INFORMAÇÕES */

.course-info-box {
  padding: 22px;

  border: 1px solid var(--borda);

  border-radius: 14px;

  display: flex;

  flex-direction: column;

  gap: 18px;

  background: var(--cor-branco);

  box-shadow: 0 8px 24px var(--preto-04);
}

.course-info-box > div {
  display: flex;

  align-items: center;

  gap: 11px;
}

.course-info-box svg {
  width: 19px;
  height: 19px;

  min-width: 19px;

  color: var(--amarelo);
}

.course-info-box span {
  font-size: 10px;

  line-height: 1.3;

  color: var(--azul);
}

.course-info-box small {
  display: block;

  margin-bottom: 2px;

  font-size: 8px;

  font-weight: 700;

  text-transform: uppercase;

  color: var(--cinza);
}

/* =========================
   TABLET
========================= */

/* =========================
   MOBILE
========================= */

.headline-row {
  text-transform: uppercase;
  font-weight: 700;
}

/* =========================
   CONTATO
========================= */
.campo-obrigatorio-msg {
  display: block;
  margin-top: 6px;
  color: #d93025;
  font-size: 12px;
  font-weight: 600;
}

[data-obrigatorio].campo-invalido {
  border-color: #d93025 !important;
}

.modal-sucesso {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s ease;
}

.modal-sucesso.ativo {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-sucesso-box {
  width: min(420px, 100%);
  padding: 32px;
  border-radius: 18px;
  background: #fff;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.modal-sucesso-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e8f7ee;
  color: #198754;
}

.modal-sucesso-icon svg {
  width: 30px;
  height: 30px;
}

.modal-sucesso-box h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.modal-sucesso-box p {
  margin: 0 0 22px;
  color: #6f7890;
  line-height: 1.6;
}

.modal-sucesso-fechar {
  border: 0;
  border-radius: 8px;
  padding: 12px 22px;
  background: var(--cor-azul, #052b72);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

/* =========================
   CABEÇALHO
========================= */

.contact-heading {
  margin-bottom: 35px;
}

.contact-tag {
  display: inline-flex;

  padding: 7px 12px;

  margin-bottom: 12px;

  border-radius: 30px;

  background: var(--amarelo);

  color: var(--azul);

  font-size: 12px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.5px;
}

.contact-heading h1 {
  margin: 0 0 12px;

  font-size: clamp(30px, 4vw, 46px);

  line-height: 1.1;

  color: var(--azul);
}

.contact-heading p {
  margin: 0;

  font-size: 14px;

  line-height: 1.7;

  color: var(--cinza);
}

/* =========================
   UNIDADES
========================= */

.contact-units {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;

  margin-bottom: 30px;
}

.contact-unit {
  position: relative;

  padding: 25px;

  border: 1px solid var(--borda);

  border-radius: 14px;

  background: var(--cor-branco);

  box-shadow: 0 8px 25px var(--preto-04);

  overflow: hidden;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-unit::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 100%;

  height: 5px;

  background: var(--amarelo);
}

.contact-unit:hover {
  transform: translateY(-4px);
}

.contact-unit-icon {
  width: 48px;
  height: 48px;

  margin-bottom: 15px;

  border-radius: 12px;

  background: var(--amarelo);

  color: var(--azul);

  display: flex;

  align-items: center;

  justify-content: center;
}

.contact-unit-icon svg {
  width: 23px;
  height: 23px;
}

.contact-unit strong {
  margin: 0 0 20px;

  font-size: 19px;

  color: var(--azul);
}

/* DADOS */

.contact-unit-info {
  display: flex;
  margin-top: 20px;

  flex-direction: column;

  gap: 14px;
}

.contact-unit-info > a,
.contact-unit-info > div {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  color: var(--azul);

  text-decoration: none;

  font-size: 13px;

  line-height: 1.5;
}

.contact-unit-info > a:hover {
  color: var(--azul);
}

.contact-unit-info svg {
  width: 17px;
  height: 17px;

  min-width: 17px;

  margin-top: 2px;

  color: var(--amarelo);
}

.contact-unit-info span {
  min-width: 0;
}

.contact-unit-info small {
  display: block;

  margin-bottom: 2px;

  font-size: 12px;

  font-weight: 700;

  text-transform: uppercase;

  color: var(--cinza);
}

/* =========================
   BLOCO FORMULÁRIO
========================= */

.contact-main {
  display: grid;

  grid-template-columns: 0.85fr 1.15fr;

  gap: 60px;

  align-items: start;

  padding: 45px;

  border-radius: 18px;

  background: var(--azul);
}

/* TEXTO ESQUERDA */

.contact-intro h2 {
  max-width: 400px;

  margin: 0 0 15px;

  color: var(--cor-branco);

  font-size: 30px;

  line-height: 1.15;
}

.contact-intro > p {
  max-width: 450px;

  margin: 0;

  color: var(--cor-branco);

  opacity: 0.8;

  font-size: 13px;

  line-height: 1.7;
}

/* BENEFÍCIOS */

.contact-benefits {
  margin-top: 35px;

  display: flex;

  flex-direction: column;

  gap: 22px;
}

.contact-benefits > div {
  display: flex;

  align-items: center;

  gap: 13px;
}

.contact-benefits > div > span {
  width: 42px;
  height: 42px;

  min-width: 42px;

  border-radius: 50%;

  background: var(--amarelo);

  color: var(--azul);

  display: flex;

  justify-content: center;

  align-items: center;
}

.contact-benefits svg {
  width: 19px;
  height: 19px;
}

.contact-benefits strong {
  display: block;

  margin-bottom: 2px;

  font-size: 14px;

  color: var(--cor-branco);
}

.contact-benefits p {
  margin: 0;

  font-size: 13px;

  line-height: 1.4;

  color: var(--cor-branco);

  opacity: 0.7;
}

/* =========================
   FORMULÁRIO
========================= */

.contact-form-box {
  padding: 28px;

  border-radius: 14px;

  background: var(--cor-branco);

  box-shadow: 0 15px 40px var(--preto-04);
}

.contact-form {
  display: flex;

  flex-direction: column;

  gap: 16px;
}

.contact-form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 14px;
}

.contact-field {
  display: flex;

  flex-direction: column;

  gap: 6px;
}

.contact-field label {
  font-size: 12px;

  font-weight: 700;

  color: var(--azul);
}

/* INPUTS */

.contact-input {
  position: relative;
}

.contact-input > svg {
  position: absolute;

  left: 14px;

  top: 50%;

  transform: translateY(-50%);

  width: 16px;
  height: 16px;

  color: var(--cinza);

  pointer-events: none;
}

.contact-input input,
.contact-input select {
  width: 100%;

  height: 48px;

  box-sizing: border-box;

  padding: 0 14px 0 42px;

  border: 1px solid var(--borda);

  border-radius: 9px;

  outline: none;

  background: var(--cor-branco);

  color: var(--cor-texto);

  font-size: 13px;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-field textarea {
  width: 100%;

  min-height: 130px;

  resize: vertical;

  box-sizing: border-box;

  padding: 14px;

  border: 1px solid var(--borda);

  border-radius: 9px;

  outline: none;

  color: var(--azul);

  font-size: 13px;

  font-family: "Inter";

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-input input:focus,
.contact-input select:focus,
.contact-field textarea:focus {
  border-color: var(--amarelo);

  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.12);
}

/* BOTÃO */

.contact-submit {
  min-height: 48px;

  padding: 0 22px;

  border: 0;

  border-radius: 9px;

  background: var(--amarelo);

  color: var(--azul);

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  cursor: pointer;

  font-size: 13px;

  font-weight: 700;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.contact-submit svg {
  width: 16px;
  height: 16px;
}

/* =========================
   TABLET
========================= */

/* =========================
   MOBILE
========================= */

/* =========================
   CALENDÁRIO
========================= */

/* =========================
   CABEÇALHO
========================= */

.calendar-heading {
  margin-bottom: 38px;
}

.calendar-tag {
  display: inline-flex;

  padding: 7px 12px;
  margin-bottom: 13px;

  border-radius: 30px;

  background: var(--amarelo);
  color: var(--azul);

  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calendar-heading h1 {
  margin: 0 0 12px;

  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;

  color: var(--azul);
}

.calendar-heading p {
  max-width: 620px;
  margin: 0;

  font-size: 14px;
  line-height: 1.7;

  color: var(--cinza);
}

/* =========================
   LAYOUT
========================= */

.calendar-layout {
  display: grid;

  grid-template-columns: minmax(0, 1fr) 330px;

  gap: 30px;

  align-items: start;
}

/* =========================
   BOX CALENDÁRIO
========================= */

.calendar-box {
  overflow: hidden;

  border: 1px solid var(--borda);
  border-radius: 16px;

  background: var(--cor-branco);

  box-shadow: 0 8px 28px var(--preto-04);
}

/* =========================
   TOOLBAR
========================= */

.calendar-toolbar {
  display: flex;

  align-items: center;
  justify-content: space-between;

  padding: 22px 25px;

  border-bottom: 1px solid var(--borda);
}

.calendar-current {
  display: flex;

  align-items: baseline;

  gap: 7px;
}

.calendar-current strong {
  font-size: 22px;

  color: var(--azul);
}

.calendar-current span {
  font-size: 11px;

  color: var(--cinza);
}

/* =========================
   SETAS
========================= */

.calendar-nav {
  width: 38px;
  height: 38px;

  padding: 0;

  border: 0;
  border-radius: 50%;

  background: var(--azul);
  color: var(--cor-branco);

  cursor: pointer;

  display: flex;

  align-items: center;
  justify-content: center;

  transition: 0.2s ease;
}

.calendar-nav:hover {
  background: var(--amarelo);

  color: var(--azul);

  transform: translateY(-2px);
}

.calendar-nav svg {
  width: 17px;
  height: 17px;
}

/* =========================
   DIAS DA SEMANA
========================= */

.calendar-weekdays {
  display: grid;

  grid-template-columns: repeat(7, 1fr);

  border-bottom: 1px solid var(--borda);

  background: var(--azul);
}

.calendar-weekdays span {
  padding: 12px 5px;

  text-align: center;

  color: var(--cor-branco);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.5px;
}

/* =========================
   GRID DE DIAS
========================= */

.calendar-grid {
  display: grid;

  grid-template-columns: repeat(7, minmax(0, 1fr));
}

/* =========================
   DIA
========================= */

.calendar-day {
  position: relative;

  min-width: 0;
  min-height: 125px;

  padding: 10px;

  box-sizing: border-box;

  border-right: 1px solid var(--borda);
  border-bottom: 1px solid var(--borda);

  background: var(--cor-branco);

  transition: background 0.2s ease;
}

.calendar-day:nth-child(7n) {
  border-right: 0;
}

.calendar-day:hover {
  background: var(--cor-fundo);
}

/* =========================
   NÚMERO DO DIA
========================= */

.calendar-day > span {
  width: 28px;
  height: 28px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  font-size: 11px;
  font-weight: 800;

  color: var(--azul);
}

/* MÊS ANTERIOR / PRÓXIMO */

.calendar-day.muted > span {
  color: var(--cinza);

  opacity: 0.45;
}

/* HOJE */

.calendar-day.today > span {
  background: var(--azul);

  color: var(--cor-branco);
}

/* =========================
   EVENTO DENTRO DO DIA
========================= */

.calendar-event {
  display: block;

  width: 100%;

  margin-top: 7px;

  padding: 8px 9px;

  border-radius: 7px;

  background: var(--amarelo);
  color: var(--azul);

  text-decoration: none;

  font-size: 10px;
  font-weight: 800;

  line-height: 1.3;

  overflow: hidden;

  white-space: nowrap;

  text-overflow: ellipsis;

  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.calendar-event:hover {
  transform: translateY(-1px);

  filter: brightness(0.97);
}

/* BOLINHA INDICANDO EVENTO */

.calendar-day.has-event::after {
  content: "";

  position: absolute;

  top: 15px;
  right: 12px;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--amarelo);
}

/* =========================
   LATERAL
========================= */

.calendar-sidebar {
  padding: 25px;

  border-radius: 16px;

  background: var(--azul);
}

/* =========================
   TÍTULO LATERAL
========================= */

.calendar-sidebar-title {
  display: flex;

  align-items: center;
  justify-content: space-between;

  margin-bottom: 20px;
}

.calendar-sidebar-title span {
  display: block;

  margin-bottom: 3px;

  font-size: 8px;
  font-weight: 700;

  text-transform: uppercase;

  color: var(--amarelo);
}

.calendar-sidebar-title h2 {
  margin: 0;

  font-size: 21px;

  color: var(--cor-branco);
}

.calendar-sidebar-title > svg {
  width: 28px;
  height: 28px;

  color: var(--amarelo);
}

/* =========================
   LISTA DE EVENTOS LATERAL
========================= */

.calendar-events-list {
  display: flex;

  flex-direction: column;

  gap: 12px;
}

/* =========================
   CARD DO EVENTO
========================= */

.calendar-event-card {
  display: grid;

  grid-template-columns: 54px minmax(0, 1fr);

  align-items: center;

  gap: 12px;

  padding: 12px;

  border-radius: 10px;

  background: var(--cor-branco);

  text-decoration: none;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.calendar-event-card:hover {
  transform: translateX(3px);
}

/* =========================
   DATA DO EVENTO
========================= */

.calendar-event-date {
  width: 54px;
  height: 58px;

  border-radius: 9px;

  background: var(--amarelo);

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;
}

.calendar-event-date strong {
  font-size: 20px;

  line-height: 1;

  color: var(--azul);
}

.calendar-event-date span {
  margin-top: 3px;

  font-size: 8px;
  font-weight: 700;

  color: var(--azul);
}

/* =========================
   INFORMAÇÕES DO EVENTO
========================= */

.calendar-event-info {
  min-width: 0;
}

.calendar-event-info small {
  display: flex;

  align-items: center;

  gap: 4px;

  margin-bottom: 4px;

  color: var(--cinza);

  font-size: 9px;
}

.calendar-event-info small svg {
  width: 12px;
  height: 12px;

  color: var(--amarelo);
}

.calendar-event-info > strong {
  display: block;

  margin-bottom: 3px;

  font-size: 12px;
  line-height: 1.35;

  color: var(--azul);
}

.calendar-event-info p {
  margin: 0;

  font-size: 9px;
  line-height: 1.4;

  color: var(--cinza);
}

/* =========================
   LOADING / ERROS
========================= */

.calendar-loading,
.calendar-error,
.calendar-empty {
  padding: 30px 20px;

  text-align: center;

  font-size: 11px;

  color: var(--cinza);
}

.calendar-grid > .calendar-loading,
.calendar-grid > .calendar-error {
  grid-column: 1 / -1;
}

/* =========================
   TABLET
========================= */

/* =========================
   MOBILE
========================= */

/* =========================
   PÁGINA DE NOTÍCIAS
========================= */
/* =========================
   CABEÇALHO
========================= */

.news-list-heading {
  margin-bottom: 38px;
}

.news-list-tag {
  display: inline-flex;

  padding: 7px 12px;

  margin-bottom: 13px;

  border-radius: 30px;

  background: var(--amarelo);

  color: var(--azul);

  font-size: 12px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.5px;
}

.news-list-heading h1 {
  margin: 0 0 12px;

  font-size: clamp(32px, 4vw, 46px);

  line-height: 1.08;

  color: var(--azul);
}

.news-list-heading p {
  margin: 0;

  font-size: 14px;

  line-height: 1.7;

  color: var(--cinza);
}

/* =========================
   GRID
========================= */

.news-list-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 24px;
}

/* =========================
   CARD
========================= */

.news-list-card {
  min-width: 0;

  overflow: hidden;

  border: 1px solid var(--borda);

  border-radius: 14px;

  background: var(--cor-branco);

  box-shadow: 0 8px 25px var(--preto-04);

  display: flex;

  flex-direction: column;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.news-list-card:hover {
  transform: translateY(-4px);
}

/* IMAGEM */

.news-list-image {
  position: relative;

  width: 100%;

  height: 220px;

  display: block;

  overflow: hidden;
}

.news-list-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;

  transition: transform 0.4s ease;
}

.news-list-card:hover .news-list-image img {
  transform: scale(1.04);
}

/* LINHA AMARELA */

.news-list-image::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 55px;

  height: 5px;

  background: var(--amarelo);
}

/* =========================
   CONTEÚDO
========================= */

.news-list-content {
  padding: 22px;

  display: flex;

  flex-direction: column;

  flex: 1;
}

/* DATA */

.news-list-date {
  display: flex;

  align-items: center;

  gap: 6px;

  margin-bottom: 11px;

  color: var(--cinza);

  font-size: 12px;

  font-weight: 700;
}

.news-list-date svg {
  width: 14px;
  height: 14px;

  color: var(--amarelo);
}

/* TÍTULO */

.news-list-content h2 {
  margin: 0 0 11px;

  font-size: 17px;

  line-height: 1.3;
}

.news-list-content h2 a {
  color: var(--azul);

  text-decoration: none;

  transition: color 0.2s ease;
}

.news-list-content h2 a:hover {
  color: var(--azul);
}

/* RESUMO */

.news-list-content > p {
  margin: 0 0 18px;

  font-size: 13px;

  line-height: 1.65;

  color: var(--cinza);

  flex: 1;
}

/* LER MAIS */

.news-list-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;

  gap: 8px;

  margin-top: auto;
  padding: 10px 16px;

  background: var(--azul);
  color: #fff;

  text-decoration: none;

  font-size: 12px;
  font-weight: 700;

  border-radius: 6px;

  transition: all 0.2s ease;
}

.news-list-more svg {
  width: 16px;
  height: 16px;

  color: var(--amarelo);

  transition: transform 0.2s ease;
}

.news-list-more:hover {
  background: var(--amarelo);
  color: var(--azul);
  gap: 10px;
}

.news-list-more:hover svg {
  color: var(--azul);
  transform: translateX(2px);
}

/* =========================
   PAGINAÇÃO
========================= */

.news-pagination {
  display: flex;

  align-items: center;

  justify-content: center;

  flex-wrap: wrap;

  gap: 7px;

  margin-top: 45px;
}

.news-pagination > a,
.news-pagination > span {
  width: 38px;
  height: 38px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid var(--borda);

  border-radius: 9px;

  background: var(--cor-branco);

  color: var(--azul);

  text-decoration: none;

  font-size: 10px;

  font-weight: 800;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.news-pagination > a:hover {
  transform: translateY(-2px);

  border-color: var(--amarelo);
}

.news-pagination > a.active {
  border-color: var(--amarelo);

  background: var(--amarelo);

  color: var(--azul);
}

.news-pagination > span {
  border-color: transparent;

  background: transparent;
}

.news-page-arrow {
  background: var(--azul) !important;

  color: var(--cor-branco) !important;

  border-color: var(--azul) !important;
}

.news-page-arrow svg {
  width: 15px;
  height: 15px;
}

.news-page-arrow.disabled {
  opacity: 0.35;

  pointer-events: none;
}

/* =========================
   TABLET
========================= */

/* =========================
   MOBILE
========================= */

/* =========================
   NOTÍCIA INTERNA
========================= */

/* VOLTAR */

.news-detail-top {
  margin-bottom: 25px;
}

.news-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 11px;
  font-weight: 800;

  color: var(--azul);

  text-decoration: none;

  transition: 0.2s ease;
}

.news-back svg {
  width: 16px;
  height: 16px;
}

.news-back:hover {
  transform: translateX(-3px);
}

/* ARTIGO */

.news-article {
  width: 100%;
}

/* HEADER */

.news-header {
  margin-bottom: 30px;
}

.news-category {
  display: inline-flex;

  padding: 7px 12px;

  margin-bottom: 15px;

  border-radius: 30px;

  background: var(--amarelo);

  color: var(--azul);

  font-size: 9px;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.5px;
}

.news-header h1 {
  margin: 0 0 15px;

  font-size: clamp(28px, 4vw, 48px);

  line-height: 1.05;

  font-weight: 700;

  color: var(--azul);
}

.news-lead {
  max-width: 760px;

  margin: 0 0 20px;

  font-size: 15px;

  line-height: 1.6;

  color: var(--cinza);
}

/* META */

.news-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 18px;
}

.news-meta-item {
  display: flex;
  align-items: center;

  gap: 6px;

  font-size: 10px;

  color: var(--cinza);
}

.news-meta-item svg {
  width: 15px;
  height: 15px;

  color: var(--amarelo);
}

/* IMAGEM PRINCIPAL */

.news-featured-image {
  width: 100%;

  height: 480px;

  margin-bottom: 35px;

  border-radius: 16px;

  overflow: hidden;

  box-shadow: var(--sombra);
}

.news-featured-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;
}

/* CONTEÚDO */

.news-content p {
  margin: 0 0 20px;

  font-size: 14px;

  line-height: 1.85;

  color: var(--azul);
}

.news-content h2 {
  margin: 35px 0 15px;

  font-size: 24px;

  line-height: 1.2;

  font-weight: 700;

  color: var(--azul);
}

.news-content h3 {
  margin: 30px 0 12px;

  font-size: 19px;

  color: var(--azul);
}

.news-content img {
  width: 100%;

  height: auto;

  display: block;

  margin: 30px 0;

  border-radius: 12px;
}

/* CITAÇÃO */

.news-content blockquote {
  position: relative;

  margin: 35px 0;

  padding: 22px 25px 22px 28px;

  border-left: 5px solid var(--amarelo);

  border-radius: 0 10px 10px 0;

  background: var(--azul);

  color: var(--cor-branco);

  font-size: 16px;

  line-height: 1.6;

  font-weight: 700;
}

/* FOOTER */

.news-footer {
  padding-top: 25px;

  border-top: 1px solid var(--borda);

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;
}

/* COMPARTILHAR */

.news-share {
  display: flex;

  align-items: center;

  gap: 8px;
}

.news-share span {
  margin-right: 3px;

  font-size: 10px;

  font-weight: 800;

  color: var(--azul);
}

.news-share a {
  width: 34px;
  height: 34px;

  border-radius: 50%;

  background: var(--azul);

  color: var(--cor-branco);

  display: flex;

  align-items: center;

  justify-content: center;

  transition: 0.2s ease;
}

.news-share a:hover {
  background: var(--amarelo);

  color: var(--azul);

  transform: translateY(-2px);
}

.news-share svg {
  width: 16px;
  height: 16px;
}

/* BOTÃO VOLTAR */

.news-back-bottom {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  padding: 11px 16px;

  border-radius: 8px;

  background: var(--amarelo);

  color: var(--azul);

  text-decoration: none;

  font-size: 10px;

  font-weight: 700;

  transition: 0.2s ease;
}

.news-back-bottom:hover {
  transform: translateY(-2px);
}

.news-back-bottom svg {
  width: 15px;
  height: 15px;
}

/* =========================
   MOBILE
========================= */

.news-source {
  max-width: 780px;
  margin: 35px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--borda);
  font-size: 11px;
  line-height: 1.6;
  color: var(--cinza);
}

.news-source strong {
  color: var(--azul);
}

.news-source a {
  color: var(--azul);
  font-weight: 700;
  text-decoration: none;
}

.news-source a:hover {
  text-decoration: underline;
}

.news-not-found {
  max-width: 760px;
  padding: 40px 0;
}

.news-not-found h1 {
  margin: 0 0 12px;
  color: var(--azul);
  font-size: clamp(28px, 4vw, 44px);
}

.news-not-found p {
  margin: 0 0 25px;
  color: var(--cinza);
  line-height: 1.7;
}

/* =========================
   PÁGINA DE APROVADOS
========================= */

/* CABEÇALHO */

.approved-page-heading {
  margin-bottom: 38px;
}

.approved-page-tag {
  display: inline-flex;
  padding: 7px 12px;
  margin-bottom: 13px;

  border-radius: 30px;

  background: var(--amarelo);
  color: var(--azul);

  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.approved-page-heading h1 {
  margin: 0 0 12px;

  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;

  color: var(--azul);
}

.approved-page-heading p {
  max-width: 620px;
  margin: 0;

  font-size: 14px;
  line-height: 1.7;

  color: var(--cinza);
}

/* =========================
   GRID
========================= */

.approved-page-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 22px;
}

/* =========================
   CARD
========================= */

.approved-page-card {
  position: relative;

  min-height: 190px;

  padding: 28px 24px;

  border-radius: 15px;

  overflow: hidden;

  display: flex;
  align-items: center;

  gap: 22px;

  background: linear-gradient(
    135deg,
    var(--cor-branco) 0 38%,
    var(--amarelo) 38%
  );

  box-shadow: 0 8px 25px var(--preto-04);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.approved-page-card:hover {
  transform: translateY(-4px);
}

/* FOTO */

.approved-page-photo {
  width: 110px;
  height: 110px;

  min-width: 110px;
  min-height: 110px;

  flex: 0 0 110px;

  border-radius: 50%;

  overflow: hidden;

  border: 4px solid var(--cor-branco);

  background: var(--cor-branco);

  box-shadow: 0 5px 18px var(--preto-04);
}

.approved-page-photo img {
  width: 100%;
  height: 100%;

  display: block;

  border-radius: 50%;

  object-fit: cover;
  object-position: center;
}

/* INFO */

.approved-page-info {
  min-width: 0;

  display: flex;
  flex-direction: column;
}

.approved-page-badge {
  display: inline-flex;

  align-self: flex-start;

  margin-bottom: 8px;

  padding: 5px 8px;

  border-radius: 20px;

  background: var(--azul);

  color: var(--cor-branco);

  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.4px;
}

.approved-page-info h2 {
  margin: 0 0 6px;

  font-size: 17px;

  line-height: 1.2;

  font-weight: 700;

  color: var(--azul);
}

.approved-page-info p {
  margin: 0;

  font-size: 10px;

  line-height: 1.4;

  font-weight: 700;

  text-transform: uppercase;

  color: var(--azul);
}

/* =========================
   PAGINAÇÃO
========================= */

.approved-pagination {
  display: flex;

  align-items: center;
  justify-content: center;

  flex-wrap: wrap;

  gap: 7px;

  margin-top: 45px;
}

.approved-pagination > a,
.approved-pagination > span {
  width: 38px;
  height: 38px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid var(--borda);

  border-radius: 9px;

  background: var(--cor-branco);

  color: var(--azul);

  text-decoration: none;

  font-size: 10px;
  font-weight: 800;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.approved-pagination > a:hover {
  transform: translateY(-2px);

  border-color: var(--amarelo);
}

.approved-pagination > a.active {
  background: var(--amarelo);

  border-color: var(--amarelo);

  color: var(--azul);
}

.approved-pagination > span {
  border-color: transparent;

  background: transparent;
}

.approved-page-arrow {
  background: var(--azul) !important;

  color: var(--cor-branco) !important;

  border-color: var(--azul) !important;
}

.approved-page-arrow svg {
  width: 15px;
  height: 15px;
}

.approved-page-arrow.disabled {
  opacity: 0.35;

  pointer-events: none;
}

/* =========================
   TABLET
========================= */

/* =========================
   MOBILE
========================= */

/* =========================
   SOBRE O OBJETIVO
========================= */



/* =========================
   APRESENTAÇÃO
========================= */

.about-hero {
  display: grid;

  grid-template-columns: 1.05fr 0.95fr;

  gap: 55px;

  align-items: center;

  margin-bottom: 30px;
}

/* IMAGEM */

.about-image {
  position: relative;

  width: 100%;

  height: 520px;

  overflow: hidden;

  border-radius: 18px;

  box-shadow: var(--sombra);
}

.about-image::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 90px;
  height: 7px;

  background: var(--amarelo);
}

.about-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;
}

/* CONTEÚDO */

.about-content {
  max-width: 560px;
}

.about-tag {
  display: inline-flex;

  padding: 7px 12px;

  margin-bottom: 14px;

  border-radius: 30px;

  background: var(--amarelo);

  color: var(--azul);

  font-size: 12px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.5px;

  margin-top: 30px;
}

.about-content h1 {
  margin: 0 0 18px;

  font-size: clamp(34px, 5vw, 50px);

  line-height: 1.05;

  color: var(--azul);
}

.about-lead {
  font-size: 15px !important;

  font-weight: 700;

  line-height: 1.65 !important;
}

.about-content > p {
  margin: 0 0 18px;

  font-size: 13px;

  line-height: 1.8;

  color: var(--cinza);
}

/* ASSINATURA */

.about-signature {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-top: 28px;

  padding-top: 22px;

  border-top: 1px solid var(--borda);
}

.about-signature > span {
  width: 44px;
  height: 44px;

  min-width: 44px;

  border-radius: 50%;

  background: var(--amarelo);

  color: var(--azul);

  display: flex;

  align-items: center;

  justify-content: center;
}

.about-signature svg {
  width: 21px;
  height: 21px;
}

.about-signature strong {
  display: block;

  font-size: 12px;

  color: var(--azul);
}

.about-signature small {
  display: block;

  margin-top: 2px;

  font-size: 9px;

  color: var(--cinza);
}

/* =========================
   PRINCÍPIOS
========================= */

.about-principles {

  border-top: 1px solid var(--borda);
}

.about-principles-heading {


  margin-bottom: 35px;
}

.about-principles-heading h2 {
  margin: 0 0 12px;

  font-size: 31px;

  line-height: 1.15;

  color: var(--azul);
}

.about-principles-heading p {
  margin: 0;



  font-size: 13px;

  line-height: 1.7;

  color: var(--cor-texto);
}

/* GRID */

.about-principles-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 22px;
}

/* CARD */

.about-principle {
  position: relative;

  min-height: 270px;

  padding: 28px;

  overflow: hidden;

  border: 1px solid var(--borda);

  border-radius: 15px;

  background: var(--cor-branco);

  box-shadow: 0 8px 25px var(--preto-04);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.about-principle:hover {
  transform: translateY(-4px);
}

.about-principle::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 100%;

  height: 5px;

  background: var(--amarelo);
}

/* NÚMERO */

.about-principle > span {
  position: absolute;

  top: 22px;
  right: 25px;

  font-size: 38px;

  line-height: 1;

  font-weight: 700;

  color: var(--azul);

  opacity: 0.07;
}

/* ÍCONE */

.about-principle-icon {
  width: 50px;
  height: 50px;

  margin-bottom: 22px;

  border-radius: 12px;

  background: var(--amarelo);

  color: var(--azul);

  display: flex;

  align-items: center;

  justify-content: center;
}

.about-principle-icon svg {
  width: 23px;
  height: 23px;
}

/* TEXTO */

.about-principle h3 {
  margin: 0 0 11px;

  font-size: 20px;

  color: var(--azul);
}

.about-principle > p {
  margin: 0;

  font-size: 11px;

  line-height: 1.7;

  color: var(--cinza);
}

/* VALORES */

.about-principle ul {
  display: flex;

  flex-direction: column;

  gap: 8px;

  margin: 0;

  padding: 0;

  list-style: none;
}

.about-principle li {
  display: flex;

  align-items: center;

  gap: 7px;

  font-size: 10px;

  color: var(--azul);

  font-weight: 700;
}

.about-principle li svg {
  width: 14px;
  height: 14px;

  min-width: 14px;

  color: var(--amarelo);

  stroke-width: 3;
}

/* =========================
   DESTAQUE FINAL
========================= */

.about-highlight {
  display: grid;

  grid-template-columns: 65px 1fr;

  gap: 20px;

  align-items: center;

  margin-top: 30px;

  padding: 32px;

  border-radius: 16px;

  background: var(--azul);
}

.about-highlight-icon {
  width: 62px;
  height: 62px;

  border-radius: 50%;

  background: var(--amarelo);

  color: var(--azul);

  display: flex;

  align-items: center;

  justify-content: center;
}

.about-highlight-icon svg {
  width: 27px;
  height: 27px;
}

.about-highlight span {
  display: block;

  margin-bottom: 4px;

  color: var(--amarelo);

  font-size: 8px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.5px;
}

.about-highlight h2 {
  margin: 0 0 7px;

  font-size: 23px;

  line-height: 1.2;

  color: var(--cor-branco);
}

.about-highlight p {
  max-width: 700px;

  margin: 0;

  font-size: 11px;

  line-height: 1.6;

  color: var(--cor-branco);

  opacity: 0.8;
}

/* =========================
   TABLET
========================= */

/* =========================
   MOBILE
========================= */

.video-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
}

.video-cover iframe {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  border: 0;
}

.bg-cinza {
  background-color: #f2f2f2;
}

/* =========================================================
   MENU DROPDOWN - SEGMENTOS
========================================================= */

.menu-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.menu-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 6px;

  padding: 0;

  border: 0;
  background: var(--cor-transparente);

  color: var(--cor-branco);

  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;

  cursor: pointer;

  opacity: 0.9;
}

.menu-dropdown-btn:hover {
  color: var(--amarelo);
}

.menu-dropdown-btn svg {
  width: 15px;
  height: 15px;

  transition: transform 0.25s ease;
}

/* SUBMENU */

.menu-dropdown-content {
  position: absolute;

  top: calc(100% + 20px);
  left: 50%;

  width: 250px;

  padding: 8px;

  background: var(--cor-branco);

  border: 1px solid var(--cor-borda);
  border-radius: 12px;

  box-shadow: var(--sombra-base);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translate(-50%, 10px);

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;

  z-index: 9999;
}

/* ÁREA INVISÍVEL ENTRE BOTÃO E DROPDOWN */

.menu-dropdown-content::before {
  content: "";

  position: absolute;

  top: -20px;
  left: 0;

  width: 100%;
  height: 20px;
}

/* LINKS */

.menu .menu-dropdown-content a {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  gap: 10px;

  padding: 12px 14px;

  border-radius: 8px;

  color: var(--azul);

  font-size: 14px;
  font-weight: 600;
  text-transform: none;

  opacity: 1;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.menu .menu-dropdown-content a:hover {
  background: var(--amarelo);
  color: var(--azul);
}

.menu-dropdown-content a svg {
  width: 17px;
  height: 17px;

  flex: 0 0 17px;
}

/* =========================================================
   DESKTOP
========================================================= */

/* =========================================================
   MOBILE
========================================================= */

/* Aprovados interno*/
.approved-page-photo {
  cursor: zoom-in;
}

.approved-page-photo img {
  transition: transform 0.3s ease;
}

.approved-page-photo:hover img {
  transform: scale(1.03);
}

.approved-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.approved-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.approved-modal-content {
  width: min(1000px, 92vw);
  display: flex;
  align-items: center;
  justify-content: center;
}

.approved-modal-card {
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.approved-modal-image-wrap {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  overflow: hidden;
}

.approved-modal-image-wrap img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.approved-modal-info {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #111;
}

.approved-modal-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--azul);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--branco);
}

.approved-modal-info h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
}

.approved-modal-info p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  opacity: 0.75;
}

.approved-modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 20;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.approved-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.2s ease;
}

.approved-modal-nav:hover,
.approved-modal-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.approved-modal-prev {
  left: 22px;
}

.approved-modal-next {
  right: 22px;
}

.approved-modal-nav.disabled {
  opacity: 0.25;
  pointer-events: none;
}

body.approved-modal-open {
  overflow: hidden;
}

.error-404 {
  min-height: 70vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 80px 20px;

  background: var(--branco);
}

.error-404 .container {
  width: 100%;
}

.error-404-content {
  max-width: 720px;
  margin: 0 auto;

  text-align: center;
}

.error-404-code {
  display: block;

  margin-bottom: 10px;

  color: var(--amarelo);

  font-size: clamp(90px, 15vw, 180px);
  font-weight: 700;
  line-height: 0.9;

  letter-spacing: -6px;
}

.error-404 h1 {
  margin: 0 0 16px;

  color: var(--azul);

  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.1;
}

.error-404 p {
  max-width: 560px;

  margin: 0 auto 30px;

  color: var(--cinza);

  font-size: 16px;
  line-height: 1.7;
}

.error-404-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 12px;
}

.btn-error-primary,
.btn-error-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  min-height: 46px;

  padding: 12px 20px;

  border-radius: 8px;

  text-decoration: none;

  font-size: 13px;
  font-weight: 700;

  transition: all 0.2s ease;
}

.btn-error-primary {
  background: var(--azul);
  color: var(--branco);
}

.btn-error-primary:hover {
  background: var(--amarelo);
  color: var(--azul);

  transform: translateY(-2px);
}

.btn-error-outline {
  border: 1px solid var(--azul);

  background: transparent;
  color: var(--azul);
}

.btn-error-outline:hover {
  background: var(--azul);
  color: var(--branco);

  transform: translateY(-2px);
}

.btn-error-primary svg,
.btn-error-outline svg {
  width: 17px;
  height: 17px;
}

/* =========================================================
   MEDIA QUERIES — RESPONSIVIDADE
   Todos os breakpoints foram agrupados no final do arquivo.
========================================================= */

@media (max-width: 920px) {
  .hero {
    min-height: 760px;
  }

  .hero-swiper {
    height: auto;

    min-height: 760px;
  }

  .hero-swiper .swiper-slide {
    min-height: 760px;
  }

  .hero-grid {
    grid-template-columns: 1fr;

    align-content: start;

    gap: 20px;

    height: auto;

    min-height: 760px;
  }

  .hero-copy {
    padding: 55px 0 10px;
  }

  .hero-visual {
    width: 100%;

    height: 400px;

    align-self: end;
  }

  .hero-person-wrap {
    height: 380px;
  }

  .hero-person,
  .hero-person-wrap::before {
    border-radius: 190px 35px 20px 20px;
  }

  .hero-slide::before {
    background-size: 36px 36px;

    -webkit-mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 52%,
      rgba(0, 0, 0, 0.65) 75%,
      transparent 100%
    );

    mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 52%,
      rgba(0, 0, 0, 0.65) 75%,
      transparent 100%
    );
  }

  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next {
    display: none;
  }
}

@media (max-width: 580px) {
  .hero {
    min-height: 720px;
  }

  .hero-swiper,
  .hero-swiper .swiper-slide {
    min-height: 720px;
  }

  .hero-grid {
    gap: 10px;

    min-height: 720px;
  }

  .hero-copy {
    padding: 42px 0 5px;
  }

  .hero-badge {
    margin-bottom: 16px;

    padding: 8px 11px;

    font-size: 9px;
  }

  .hero-kicker {
    font-size: 11px;

    letter-spacing: 1px;
  }

  .hero h1 {
    margin: 8px 0 14px;

    font-size: clamp(46px, 16vw, 70px);

    line-height: 0.92;

    letter-spacing: -2px;
  }

  .hero-sub {
    max-width: 100%;

    font-size: 11px;

    line-height: 1.5;

    letter-spacing: 1px;
  }

  .hero-actions {
    gap: 8px;

    margin-top: 22px;
  }

  .hero-visual {
    height: 330px;
  }

  .hero-person-wrap {
    height: 310px;
  }

  .hero-person,
  .hero-person-wrap::before {
    border-radius: 150px 28px 18px 18px;
  }

  .hero-person-wrap::before {
    inset: -10px 10px 10px -10px;
  }

  .hero-person img {
    object-position: center;
  }

  .hero-slide::before {
    background-size: 30px 30px;

    -webkit-mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 55%,
      rgba(0, 0, 0, 0.55) 80%,
      transparent 100%
    );

    mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 55%,
      rgba(0, 0, 0, 0.55) 80%,
      transparent 100%
    );
  }

  .floating-icon {
    width: 42px;
    height: 42px;
  }

  .floating-icon svg {
    width: 19px;
    height: 19px;
  }

  .float-1 {
    left: 4px;

    top: 75px;
  }

  .float-2 {
    right: 4px;

    top: 140px;
  }

  .float-3 {
    right: 30px;

    bottom: 8px;
  }

  .hero-card {
    left: 0;

    bottom: 20px;
  }

  .hero-swiper .swiper-pagination {
    bottom: 12px !important;
  }
}

@media (max-width: 1000px) {
  .segment-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .segment-content-copy {
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .segmentos {
    padding: 45px 0;
  }

  .segment-tabs {
    display: flex;

    overflow-x: auto;

    gap: 8px;

    padding-bottom: 8px;

    scrollbar-width: none;
  }

  .segment-tabs::-webkit-scrollbar {
    display: none;
  }

  .segment {
    flex: 0 0 130px;

    min-height: 85px;
  }

  .segment-content,
  .segment-content.active {
    grid-template-columns: 1fr;
  }

  .segment-content-image {
    min-height: 240px;

    height: 240px;
  }

  .segment-content-copy {
    padding: 28px 22px 32px;
  }

  .segment-content-copy h3 {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .agenda-modal {
    padding: 12px;
    align-items: flex-end;
  }

  .agenda-modal-dialog {
    max-height: 88vh;
    border-radius: 22px 22px 12px 12px;
    padding: 28px 22px;
  }

  .agenda-modal-content h2 {
    margin-right: 35px;
    font-size: 26px;
  }

  .agenda-modal-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1024px) {
  .testimonial-swiper {
    padding-left: 42px;

    padding-right: 42px;
  }

  .testimonial-card {
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 25px 0 40px;
  }

  .testimonial-swiper {
    padding: 5px 5px 38px;
  }

  .testimonial-card {
    min-height: auto;

    padding: 20px;
  }

  .testimonial-body {
    font-size: 12px;
  }

  .testimonial-prev,
  .testimonial-next {
    display: none;
  }
}

@media (max-width: 680px) {
  .approved-swiper,
  .testimonial-swiper {
    padding-left: 0;
    padding-right: 0;
  }

  .approved-swiper .swiper-button-prev,
  .approved-swiper .swiper-button-next,
  .testimonial-swiper .swiper-button-prev,
  .testimonial-swiper .swiper-button-next {
    display: none;
  }
}

@media (max-width: 920px) {
  .menu,
  .nav > .btn-yellow {
    display: none;
  }

  .menu-btn {
    display: grid;
    place-items: center;
  }

  .menu.open {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--altura-header);
    background: var(--cor-azul-agenda-2);
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy {
    padding: 65px 0 20px;
  }

  .hero-visual {
    height: 430px;
    width: min(560px, 100%);
    margin: auto;
  }

  .hero {
    min-height: auto;
  }

  .feature-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .news-grid,
  .approved-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .agenda-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-units {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .container {
    width: min(
      100% - var(--padding-container-mobile),
      var(--largura-container)
    );
  }

  .hero::before {
    background:
      linear-gradient(
        180deg,
        var(--hero-azul-97) 0%,
        var(--hero-azul-93) 62%,
        var(--hero-azul-80) 100%
      ),
      url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=900&q=85")
        center/cover;
  }

  .hero-copy {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: 54px;
    letter-spacing: -2px;
  }

  .hero-kicker {
    font-size: 10px;
  }

  .hero-sub {
    font-size: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 14px;
  }

  .hero-stat {
    width: calc(50% - 7px);
  }

  .hero-visual {
    height: 335px;
  }

  .hero-person {
    inset: 20px 0 0 0;
    border-radius: 160px 22px 0 0;
  }

  .hero-card {
    left: 10px;
    right: 10px;
    bottom: 20px;
  }

  .float-1 {
    left: 2px;
  }

  .float-2 {
    right: 2px;
  }

  .float-3 {
    right: 34px;
  }

  .segment-tabs {
    grid-template-columns: repeat(5, 145px);
    overflow-x: auto;
  }

  .feature-grid,
  .news-grid,
  .approved-grid,
  .agenda-grid,
  .numbers-grid {
    grid-template-columns: 1fr;
  }

  .footer-units {
    grid-template-columns: 1fr;
  }

  .feature {
    grid-template-columns: 1fr 110px;
    min-height: 190px;
  }

  .feature-art {
    height: 120px;
  }

  .feature h3 {
    font-size: 22px;
  }

  .video-cover {
    min-height: 220px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 0;
    border-radius: 50%;
  }

  .whatsapp-float span {
    display: none;
  }

  .fake-video {
    height: 260px;
  }
}

@media (max-width: 920px) {
  body.menu-open {
    overflow: hidden;
  }

  .menu {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    right: -320px !important;
    left: auto !important;
    width: min(320px, 86vw);
    height: 100dvh;
    background: linear-gradient(180deg, var(--azul3), var(--azul));
    flex-direction: column;
    align-items: stretch !important;
    justify-content: flex-start;
    gap: 0 !important;
    padding: 95px 24px 28px !important;
    margin: 0 !important;
    z-index: 1002;
    box-shadow: -20px 0 50px var(--preto-28);
    transition: right 0.32s ease;
    overflow-y: auto;
  }

  .menu.open {
    right: 0 !important;
  }

  .menu a {
    width: 100%;
    padding: 16px 4px;
    border-bottom: 1px solid var(--branco-12);
    font-size: 12px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .menu a::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid var(--amarelo);
    border-right: 2px solid var(--amarelo);
    transform: rotate(45deg);
    flex: 0 0 auto;
  }

  .menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: var(--overlay-menu);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.28s ease;
    z-index: 1001;
  }

  .menu-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .menu-btn {
    position: relative;
    z-index: 1003;
  }

  .menu-btn.is-open {
    position: fixed;
    right: 18px;
    top: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--branco-10);
    border: 1px solid var(--branco-16);
  }
}

@media (max-width: 1000px) {
  .course-detail-hero {
    grid-template-columns: 1fr 1fr;

    gap: 30px;
  }

  .course-detail-image {
    height: 390px;
  }

  .course-content {
    grid-template-columns: 1fr 280px;

    gap: 35px;
  }
}

@media (max-width: 768px) {
  .course-detail {
    padding: 30px 0 50px;
  }

  .course-detail-hero {
    grid-template-columns: 1fr;

    gap: 25px;

    margin-bottom: 45px;
  }

  .course-detail-image {
    height: 280px;

    border-radius: 13px;
  }

  .course-detail-intro h1 {
    font-size: 33px;
  }

  .course-lead {
    font-size: 14px;
  }

  /* CONTEÚDO */

  .course-content {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .course-content-main h2 {
    font-size: 23px;
  }

  .course-content-main p {
    font-size: 13px;

    line-height: 1.75;
  }

  /* DESTAQUE */

  .course-highlight {
    align-items: flex-start;

    padding: 20px;
  }

  /* LATERAL */

  .course-sidebar {
    position: static;

    top: auto;
  }
}

@media (max-width: 1000px) {
  .contact-units {
    grid-template-columns: 1fr 1fr;
  }

  .contact-main {
    grid-template-columns: 1fr;

    gap: 35px;
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding: 35px 0 50px;
  }

  .contact-heading h1 {
    font-size: 31px;
  }

  .contact-units {
    grid-template-columns: 1fr;
  }

  .contact-unit {
    padding: 22px;
  }

  .contact-main {
    padding: 25px 20px;

    border-radius: 14px;
  }

  .contact-intro h2 {
    font-size: 25px;
  }

  .contact-form-box {
    padding: 20px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1000px) {
  .calendar-layout {
    grid-template-columns: 1fr;
  }

  .calendar-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .calendar-page {
    padding: 35px 0 50px;
  }

  .calendar-heading {
    margin-bottom: 28px;
  }

  .calendar-heading h1 {
    font-size: 31px;
  }

  /* TOOLBAR */

  .calendar-toolbar {
    padding: 18px;
  }

  .calendar-current strong {
    font-size: 19px;
  }

  /* DIAS DA SEMANA */

  .calendar-weekdays span {
    padding: 10px 2px;

    font-size: 7px;
  }

  /* DIA */

  .calendar-day {
    min-height: 62px;

    padding: 6px 4px;
  }

  .calendar-day > span {
    width: 22px;
    height: 22px;

    font-size: 8px;
  }

  /* EVENTO VIRA UMA BOLINHA NO MOBILE */

  .calendar-event {
    width: 7px;
    height: 7px;

    margin: 4px auto 0;

    padding: 0;

    border-radius: 50%;

    overflow: hidden;

    text-indent: -9999px;

    white-space: nowrap;
  }

  .calendar-day.has-event::after {
    display: none;
  }

  /* LATERAL */

  .calendar-sidebar {
    padding: 20px;
  }

  .calendar-event-info > strong {
    font-size: 12px;
  }
}

@media (max-width: 1000px) {
  .news-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .news-list-page {
    padding: 35px 0 50px;
  }

  .news-list-heading {
    margin-bottom: 28px;
  }

  .news-list-heading h1 {
    font-size: 31px;
  }

  .news-list-grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .news-list-image {
    height: 210px;
  }

  .news-list-content {
    padding: 19px;
  }

  .news-list-content h2 {
    font-size: 16px;
  }

  .news-pagination {
    margin-top: 35px;
  }

  .news-pagination > a,
  .news-pagination > span {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 768px) {
  .news-detail {
    padding: 30px 0 45px;
  }

  .news-header h1 {
    font-size: 30px;
  }

  .news-lead {
    font-size: 14px;
  }

  .news-featured-image {
    height: 260px;

    border-radius: 12px;
  }

  .news-content p {
    font-size: 13px;

    line-height: 1.75;
  }

  .news-content h2 {
    font-size: 21px;
  }

  .news-content blockquote {
    font-size: 14px;

    padding: 18px 20px;
  }

  .news-footer {
    flex-direction: column;

    align-items: flex-start;
  }
}

@media (max-width: 1100px) {
  .approved-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .approved-page {
    padding: 35px 0 50px;
  }

  .approved-page-heading h1 {
    font-size: 31px;
  }

  .approved-page-grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .approved-page-card {
    min-height: 160px;

    padding: 22px 18px;

    gap: 17px;
  }

  .approved-page-photo {
    width: 90px;
    height: 90px;

    min-width: 90px;
    min-height: 90px;

    flex-basis: 90px;
  }

  .approved-page-info h2 {
    font-size: 15px;
  }

  .approved-page-info p {
    font-size: 9px;
  }
}

@media (max-width: 1000px) {
  .about-hero {
    grid-template-columns: 1fr 1fr;

    gap: 35px;
  }

  .about-image {
    height: 440px;
  }

  .about-principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-page {
    padding: 35px 0 50px;
  }

  /* HERO */

  .about-hero {
    grid-template-columns: 1fr;

    gap: 28px;

    margin-bottom: 50px;
  }

  .about-image {
    height: 300px;

    border-radius: 14px;
  }

  .about-content h1 {
    font-size: 33px;
  }

  .about-lead {
    font-size: 14px !important;
  }

  .about-content > p {
    font-size: 12px;
  }

  /* PRINCÍPIOS */

  .about-principles {
    padding-top: 45px;
  }

  .about-principles-heading h2 {
    font-size: 25px;
  }

  .about-principles-grid {
    grid-template-columns: 1fr;
  }

  .about-principle {
    min-height: auto;

    padding: 24px;
  }

  /* DESTAQUE */

  .about-highlight {
    grid-template-columns: 1fr;

    padding: 25px;
  }

  .about-highlight h2 {
    font-size: 20px;
  }
}

@media (min-width: 921px) {
  .menu-dropdown:hover .menu-dropdown-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translate(-50%, 0);
  }

  .menu-dropdown:hover .menu-dropdown-btn svg {
    transform: rotate(180deg);
  }
}

@media (max-width: 920px) {
  .menu-dropdown {
    width: 100%;

    display: block;

    border-bottom: 1px solid var(--branco-12);
  }

  .menu-dropdown-btn {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 16px 4px;

    color: var(--cor-branco);

    font-size: 12px;
  }

  .menu-dropdown-btn svg {
    color: var(--amarelo);
  }

  /*
   * No mobile o submenu deixa de ser absoluto
   */

  .menu-dropdown-content {
    position: static;

    width: 100%;

    padding: 0 0 8px 12px;

    background: var(--cor-transparente);

    border: 0;
    border-radius: 0;

    box-shadow: none;

    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: none;

    display: none;
  }

  .menu-dropdown.aberto .menu-dropdown-content {
    display: block;
  }

  .menu-dropdown.aberto .menu-dropdown-btn svg {
    transform: rotate(180deg);
  }

  /*
   * Links internos
   */

  .menu .menu-dropdown-content a {
    width: 100%;

    padding: 12px 10px;

    border: 0;
    border-bottom: 1px solid var(--branco-08);
    border-radius: 0;

    color: var(--cor-branco);

    font-size: 11px !important;

    text-transform: none;
  }

  .menu .menu-dropdown-content a:hover {
    background: var(--branco-08);

    color: var(--amarelo);
  }

  /*
   * Remove a setinha automática do seu menu mobile
   */

  .menu .menu-dropdown-content a::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .approved-modal {
    padding: 18px;
  }

  .approved-modal-content {
    width: 100%;
  }

  .approved-modal-card {
    grid-template-columns: 1fr;
    max-height: 88vh;
    overflow-y: auto;
  }

  .approved-modal-image-wrap {
    min-height: auto;
    max-height: 62vh;
  }

  .approved-modal-image-wrap img {
    max-height: 62vh;
  }

  .approved-modal-info {
    padding: 24px 20px 28px;
  }

  .approved-modal-nav {
    width: 44px;
    height: 44px;
  }

  .approved-modal-prev {
    left: 8px;
  }

  .approved-modal-next {
    right: 8px;
  }

  .approved-modal-close {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 576px) {
  .error-404 {
    min-height: 65vh;

    padding: 60px 20px;
  }

  .error-404-code {
    letter-spacing: -3px;
  }

  .error-404 p {
    font-size: 14px;
  }

  .error-404-actions {
    flex-direction: column;
  }

  .btn-error-primary,
  .btn-error-outline {
    width: 100%;
    max-width: 280px;
  }
}
