.text-primary{
  color: #021b35 !important;
}
 
/* Fonte global */
body {
  font-family: "Poppins", sans-serif;
}

/* Navbar personalizada */
.navbar {
  background-color: #021b35 !important;
  /* azul escuro igual a imagem */
}

.nav-link {
  color: #ffffff;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #f15a29;
  /* hover laranja */
}

.nav-link.active {
  color: #f15a29 !important;
  /* página atual destacada */
  font-weight: 700;
}

/* Mobile */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Corrige quebra de texto no mobile */
.navbar .dropdown-menu .dropdown-item {
  white-space: normal !important;
  word-break: break-word;
}

.btn-light {
  background-color: #ffffff;
  color: #021b35;
  border-radius: 30px;
  padding: 6px 16px;
  font-weight: 500;
}

.btn-secondary {
  background-color: #334155;
  color: #ffffff;
  border-radius: 30px;
  padding: 6px 16px;
  font-weight: 500;
}

.btn-light:hover,
.btn-secondary:hover {
  opacity: 0.9;
}

/* Footer */
.footer {
  background-color: #021b35;
  color: #bfc7d5;
  text-align: center;
  position: relative;
  bottom: 0;
  width: 100%;
  flex-shrink: 0;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer .footer-tagline {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
  color: #ffffff;
  text-align: center;
}

.footer .newsletter-title {
  color: #bfc7d5;
  font-weight: 500;
  margin-bottom: 10px;
}

.newsletter-form {
  max-width: 37rem;
  margin: 0 auto;
}

.newsletter-input {
  border-radius: 30px;
  padding: 10px 15px;
  border: 1px solid #334155;
  background: transparent;
  color: #fff;
}

.newsletter-input::placeholder {
  color: #9aa6b2;
}

.newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 600px;
}

.newsletter-form {
  display: flex;
  width: 100%;
  justify-content: center;
}

.newsletter-input {
  flex: 1;
  max-width: 400px;
  height: 46px;
}

.btn-newsletter {
  height: 46px;
}

.btn-newsletter {
  background: linear-gradient(90deg, #3ecf8e, #1cb5e0);
  color: #fff;
  border-radius: 50px;
  padding: 10px 35px;
  border: none;
  font-weight: 600;
  white-space: nowrap;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.25s ease-in-out;
  /* transição suave */
}

.btn-newsletter:hover {
  filter: brightness(1.1);
  /* dá um "brilho" */
  box-shadow: 0 4px 12px rgba(28, 181, 224, 0.4);
  /* sombra suave */
  color: #fff;
}

.btn-newsletter:hover {
  opacity: 0.9;
}

.footer-links a {
  color: #bfc7d5;
  text-decoration: none;
  margin: 0 5px;
}

.footer-links a:hover {
  color: #f15a29;
}

.footer-copy {
  font-size: 14px;
  color: #9aa6b2;
}

.footer-copy .dev-name {
  color: #f15a29;
  font-weight: 500;
}

.footer-brand {
  gap: 15px;
}

.footer-divider {
  width: 1px;
  height: 50px;
  background-color: #334155;
}

.footer-tagline {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
}

/* Mobile: input e botão empilhados */
@media (max-width: 576px) {
  .newsletter-form {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .newsletter-input,
  .btn-newsletter {
    max-width: 100%;
    width: 100%;
  }
}

/* Mantém footer no fundo mesmo com pouco conteúdo */
html,
body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

section {
  position: relative;
  width: 100%; 
}

.item {
  width: 200px;
  height: 300px;
  list-style-type: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  box-shadow: 0 20px 30px rgba(255, 255, 255, 0.3) inset;
  transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;

  &:nth-child(1),
  &:nth-child(2) {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
  }

  &:nth-child(3) {
    left: 50%;
  }

  &:nth-child(4) {
    left: calc(50% + 220px);
  }

  &:nth-child(5) {
    left: calc(50% + 440px);
  }

  &:nth-child(6) {
    left: calc(50% + 660px);
    opacity: 0;
  }
}

.content {
  width: min(30vw, 400px);
  position: absolute;
  top: 50%;
  left: 3rem;
  transform: translateY(-50%);
  font: 400 0.85rem helvetica, sans-serif;
  color: white;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: none;

  & .title {
    font-family: "arial-black";
    text-transform: uppercase;
  }

  & .description {
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
    font-size: 0.8rem;
  }

  & button {
    width: fit-content;
    background-color: rgba(0, 0, 0, 0.1);
    color: white;
    border: 2px solid white;
    border-radius: 0.25rem;
    padding: 0.75rem;
    cursor: pointer;
  }
}

.item:nth-of-type(2) .content {
  display: block;
  animation: show 0.75s ease-in-out 0.3s forwards;
}

@keyframes show {
  0% {
    filter: blur(5px);
    transform: translateY(calc(-50% + 75px));
  }

  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  user-select: none;

  & .btn {
    background-color: rgba(255, 255, 255, 0.5);
    color: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(0, 0, 0, 0.6);
    margin: 0 0.25rem;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;

    &:hover {
      background-color: rgba(255, 255, 255, 0.3);
    }
  }
}

@media (width > 650px) and (width < 900px) {
  .content {
    & .title {
      font-size: 1rem;
    }

    & .description {
      font-size: 0.7rem;
    }

    & button {
      font-size: 0.7rem;
    }
  }

  .item {
    width: 160px;
    height: 270px;

    &:nth-child(3) {
      left: 50%;
    }

    &:nth-child(4) {
      left: calc(50% + 170px);
    }

    &:nth-child(5) {
      left: calc(50% + 340px);
    }

    &:nth-child(6) {
      left: calc(50% + 510px);
      opacity: 0;
    }
  }
}

@media (width < 650px) {
  .content {
    & .title {
      font-size: 0.9rem;
    }

    & .description {
      font-size: 0.65rem;
    }

    & button {
      font-size: 0.7rem;
    }
  }

  .item {
    width: 130px;
    height: 220px;

    &:nth-child(3) {
      left: 50%;
    }

    &:nth-child(4) {
      left: calc(50% + 140px);
    }

    &:nth-child(5) {
      left: calc(50% + 280px);
    }

    &:nth-child(6) {
      left: calc(50% + 420px);
      opacity: 0;
    }
  }
}

.nosso-sucesso .title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nosso-sucesso .subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #616975;
}

.nosso-sucesso .highlight {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  /* leve */
  line-height: 0.9;
  letter-spacing: -0.02em;
  font-size: clamp(2.8rem, 8vw, 6rem);
  /* bem grande */
  margin: 0;

  /* cor estilo mock: topo azul-marinho, base laranja */
  background: linear-gradient(90deg, #0e2238 0%, #0e2238 45%, #c24c22 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* prefixo/sufixo menores (%, +, K etc.) */
.nosso-sucesso .highlight .pre,
.nosso-sucesso .highlight .suf {
  font-weight: 700;
  font-size: 0.45em;
  line-height: 1;
  margin: 0 0.02em;
  -webkit-text-fill-color: initial;
  /* mantém cor sólida se preferir */
  color: #c24c22;
}

/* labels */
.nosso-sucesso p {
  margin: 0.4rem 0 0;
  color: #0e2238;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

/* espaçamento */
#indicadores-row > [class^="col"] {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*

.carousel-item {
    height: 90vh;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}
 
.carousel-caption {
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left; 
  right: auto;
  left: 0;
  bottom: 0;
  top: 0;
  padding-left: 5%;
  padding-right: 5%;
  width: 50%;
  z-index: 2;  
}

.carousel-caption::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0));
  z-index: -1;  
  border-radius: 0;  
}

.carousel-caption h5,
.carousel-caption p {
  text-align: left;
  margin: 0;
}

.carousel-caption h5 {
    font-weight: 700;
    font-size: 2.5rem;
}

.carousel-caption p {
    font-weight: 400;
    font-size: 1.2rem;
}

.carousel-control-prev,
.carousel-control-next {
    display: none !important;
}
*/

/* === Hero / Carousel === */
#carouselExampleIndicators {
  position: relative;
  overflow: visible;
}

/* deixa a curva passar */

.hero-curve {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 120px;
  pointer-events: none;
  z-index: 3;
  /* acima da imagem */
}

.hero-curve svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* preenchimento branco + sombra */
.hero-curve .curve-fill {
  fill: #ffffff;
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.1));
  /* sombra abaixo */
}

/* borda fininha cinza */
.hero-curve .curve-border {
  fill: none;
  stroke: #dcdcdc;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  shape-rendering: geometricPrecision;
}

/* ================== HERO / CAROUSEL ================== */
.carousel-indicators {
  bottom: 2rem;
}

#carouselExampleIndicators.hero {
  position: relative;
  overflow: hidden;
  /* segura a curva */
  background: #08243a;
  /* fallback sob as imagens */
}

/* curva inferior (estilo da sua imagem) */
#carouselExampleIndicators.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
  width: 140%;
  height: 160px;
  /* altura da curva */
  background: #fff;
  /* cor do conteúdo abaixo */
  border-bottom-left-radius: 50% 100%;
  border-bottom-right-radius: 50% 100%;
  pointer-events: none;
}

/* ================== CAPTION ESQUERDA ================== */
.carousel-item {
  height: 100vh;
}

.carousel-item img {
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  left: 0;
  right: auto;
  top: 0;
  bottom: 0;
  width: 50%;
  padding: 0 5%;
  z-index: 2;
}

.carousel-caption::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  z-index: -1;
}

.carousel-caption h5 {
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.1;
  margin: 0 0 0.5rem 0;
}

.carousel-caption p {
  font-size: 1.15rem;
  margin: 0 0 1rem 0;
}

/* ================== CARDS FLUTUANTES DIREITA ================== */
.floating-cards {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.floating-cards .stack-right {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 390px;
}

.float-card {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(255, 255, 255, 0.92)
  );
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(3px);
  animation: bob 7s ease-in-out infinite;
}

.float-card:nth-child(2) {
  animation-duration: 7.6s;
  animation-delay: 0.5s;
  transform: translateX(-6px);
}

.float-card:nth-child(3) {
  animation-duration: 6.8s;
  animation-delay: 1s;
  transform: translateX(12px);
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(-4px);
  }

  50% {
    transform: translateY(6px);
  }
}

/* ícone grande (Bootstrap Icons) */
.icon1 {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #000a3e;
  display: grid;
  place-items: center;
  flex: 0 0 56px;
}

.icon2 {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #b03b08;
  display: grid;
  place-items: center;
  flex: 0 0 56px;
}

.icon3 {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #646464;
  display: grid;
  place-items: center;
  flex: 0 0 56px;
}

.icon i {
  font-size: 28px;
  color: #fff !important;
}

/* maiorzão */

.fc-title {
  font-weight: 800;
  font-size: 1.3rem;
  color: #0f172a;
  line-height: 1.1;
}

.fc-sub {
  font-weight: 500;
  font-size: 0.72rem;
  color: #6b7280;
}

/* CTA pílula laranja */
.cta {
  margin-left: auto;
  white-space: nowrap;
  font-weight: 800;
  padding: 9px 16px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, #ff7a2c, #ff5a1f);
  box-shadow: 0 8px 26px rgba(255, 90, 31, 0.34);
  transition: transform 0.15s ease;
}

.cta:active {
  transform: translateY(1px);
}

/* bolinha de status */
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2ecc71;
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.18);
}

/* some controles; mantém swipe */
.carousel-control-prev,
.carousel-control-next {
  display: none !important;
}

/* responsivo */
@media (max-width: 1200px) {
  .carousel-caption h5 {
    font-size: 2.6rem;
  }

  .floating-cards .stack-right {
    right: 4%;
    max-width: 360px;
    gap: 22px;
  }
}

@media (max-width: 991px) {
  .carousel-caption {
    width: 60%;
  }

  .floating-cards .stack-right {
    right: 3%;
    max-width: 320px;
  }

  .icon {
    width: 52px;
    height: 52px;
  }

  .icon i {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .carousel-caption {
    width: 100%;
    padding-right: 8%;
  }

  .floating-cards {
    display: none;
  }

  /* se quiser manter, troca pra visibility */
}

/* --- card base --- */
.card-curso {
  position: relative;
  border: 0; /* sem borda */
  background: transparent; /* fundo transparente (só img + body) */
  overflow: visible; /* deixa o body passar por cima da imagem */
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

/* imagem */
.card-curso .thumb {
  width: 100%;
  aspect-ratio: 16/11; /* mais “quadrada” como no print */
  object-fit: cover;
  display: block;
  border-radius: 0; /* sem arredondamento */
  box-shadow: none;
}

/* badge no topo da imagem (reta) */
.badge-top {
  position: absolute;
  top: 12px;
  z-index: 2;
  background: #0e2238;
  color: #fff;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 0; /* sem arredondamento */
}
.badge-top.alt {
  background: #135b89;
}

/* tipografia do body */
.card-curso .titulo {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.15;
  color: #000000 !important;
  margin: 0 0 10px;
}
.card-curso .resumo {
  color: rgba(0, 0, 0, 0.95);
  font-size: 0.8rem;
  line-height: 1.35;
  min-height: 0;
  margin: 0 0 18px;
}

/* botão no body (borda branca em duas linhas se quiser) */
.card-curso .btn-ghost {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid #121212; /* branco */
  color: #000000;
  background: transparent;
  font-weight: 800;
  font-size: 0.7rem;
  width: 40%;
}
.card-curso .btn-ghost:hover {
  background: #fff;
  color: #ea5a2a;
}

/* linha laranja e hover-pane: desativados nesse layout */
.card-curso .accent {
  display: none;
}
.card-curso .hover-pane {
  display: none;
}

/* layout */
.card-wrap {
  position: relative;
}


/* BODY: quadrado menor e sobreposto à imagem */
.card-curso .body {
  position: relative;
  background: #ffffff;
  color: #000000;
  width: 83%;
  height: 100%;
  margin-left: 48px;
  margin-top: -70px;
  padding: 22px 26px;
  border-radius: 0;
  border-bottom: 0.4rem solid #f15a29;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  z-index: 3;
  overflow: hidden; /* mantém o overlay dentro */
}

/* responsivo */
@media (max-width: 991px) {
  .card-curso .body {
    width: 84%;
    margin-left: 32px; 
  }
}
@media (max-width: 575px) {
  .card-curso .body {
    width: 100%;
    margin-left: 0; 
  }
}


/* Camada laranja que vai fazer o slide */
.card-curso .body::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%; /* começa fora, abaixo do body */
  width: 100%;
  height: 100%;
  background: #f15a29;
  transition: bottom 0.4s ease;
  z-index: -1; /* fica atrás do conteúdo */
}

/* Quando hover, a camada sobe */
.card-curso:hover .body::after {
  bottom: 0;
}

/* Ajusta textos e borda no hover */
.card-curso:hover .body {
  color: #fff;
  border-bottom: 0.4rem solid #ffffff;
}

.card-curso:hover .body h5,
.card-curso:hover .body .titulo,
.card-curso:hover .body p,
.card-curso:hover .body a {
  color: #fff;
}

.card-curso .body {
  height: 240px; /* exemplo */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* h5 (ou .titulo) branco no hover do card */
.card-curso:hover .body h5,
.card-curso:hover .body .titulo {
  color: #fff !important;
}

.card-curso:hover .btn-ghost {
  color: #fff !important;
  border-color: #fff !important;
}

/* botão: texto laranja e fundo branco no hover do botão */
.card-curso .btn-ghost:hover {
  background: #fff !important;
  color: #ea5a2a !important;
  border-color: #fff !important;
}

.turma-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 320px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.turma-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}
.turma-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.turma-overlay {
  position: absolute;
  inset: 0;
  /* cor via inline style --background: #hex */
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.55) 100%
  );
  mix-blend-mode: multiply; /* mistura cor do tema com a foto */
}
.turma-tint {
  position: absolute;
  inset: 0;
  opacity: 0.35; /* controla intensidade da cor do tema */
  background: var(--tema, #0e2238);
}
.turma-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
  z-index: 2;
}
.turma-pill {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #0e2238; /* ou laranja, dependendo do tipo */
  color: #fff;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 6px 6px 0 0; /* arredondado em cima */
  z-index: 2;
}

.turma-card[data-tema="laranja"] .turma-pill {
  background: #f15a29;
}

/* bordas arredondadas de 16px nos cantos, inclusive na imagem */
.turma-card,
.turma-overlay,
.turma-tint,
.turma-img {
  border-radius: 16px;
}

/* responsivo */
@media (max-width: 991px) {
  .turma-card {
    height: 280px;
  }
  .turma-title {
    font-size: 1.6rem;
    bottom: 80px;
  }
}
@media (max-width: 576px) {
  .turma-card {
    height: 260px;
  }
  .turma-title {
    font-size: 1.4rem;
    bottom: 76px;
  }
}
.btn-ver-mais {
  display: inline-block;
  padding: 12px 28px;
  font: 600 1rem Poppins, sans-serif;
  color: #fff;
  background-color: #0e2238;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.btn-ver-mais:hover {
  background-color: #d84f23;
  transform: translateY(-2px);
}

.eja-section {
  padding: 50px 0;
}

.eja-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 991px) {
  .eja-content{
    flex-direction: column;
  }
}
.eja-text {
  flex: 1;
}

.eja-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0e2238;
}

.eja-text .highlight {
  background: #f15a29;
  color: white;
  padding: 4px 10px;
  border-radius: 50px;
  margin-right: 5px;
}

.eja-text p {
  margin: 20px 0;
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
}

.saiba-mais {
  color: #0e2238;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: underline;
}

.eja-image {
  flex: 1;
}

.image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.image-wrapper video {
  width: 100%;
  display: block;
  border-radius: 16px;
  position: relative;
  z-index: 5;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
}

.q1div {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 5rem;
  height: 5rem;
  background: #0e2238;
  border-radius: 8px;
  z-index: 1;
}

.q2div {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 5rem;
  height: 5rem;
  background: #f15a29;
  border-radius: 8px;
  z-index: 1;
}

/* --- layout base --- */
.difs {
  padding: 48px 0 32px;
  font-family: Poppins, sans-serif;
}

.difs-title {
  text-align: center;
  font-weight: 800;
  font-size: clamp(1.7rem, 2.6vw, 2.1rem);
  color: #0e2238;
  margin: 0;
}
.difs-sub {
  text-align: center;
  color: #3b4552;
  max-width: 780px;
  margin: 10px auto 28px;
}

.difs-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

/* --- esquerda --- */
.difs-left {
  position: relative;
  min-height: 340px;
}
.difs-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.14);
}
/* quadrado verde atrás */
.shape-square {
  position: absolute;
  z-index: 1;
  left: -28px;
  top: -19px;
  width: 80px;
  height: 80px;
  background: #31e49d;
  border-radius: 12px;
}
/* círculo verde atrás (direita) */
.shape-circle {
  position: absolute;
  z-index: 1;
  right: -28px;
  bottom: -13px;
  width: 80px;
  height: 80px;
  background: #29d58f;
  border-radius: 999px;
}

/* --- direita --- */
.difs-head {
  font-weight: 800;
  color: #0e2238;
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}
.difs-head span {
  color: #f15a29;
}

.difs-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 16px;
  color: #3b4552;
}
.difs-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
}
/* --- responsivo --- */
@media (max-width: 992px) {
  .difs-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .shape-square {
    left: -10px;
  }
  .shape-circle {
    right: -10px;
  }
}

.difs-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.difs-list .icon-wrap {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #f9fafb;
  display: flex;
  align-items: center; /* centraliza verticalmente */
  justify-content: center; /* centraliza horizontalmente */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  color: #0e2238;
  font-size: 20px;
}

.difs-list .text {
  flex: 1;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.5;
}

:root {
  --azul: #0e2238;
  --laranja: #f15a29;
  --texto: #3b4552;
  --card: #fff;
  --muted: #6b7280;
}

.tools {
  padding: 48px 0;
  font-family: Poppins, sans-serif;
}
.tools__container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.tools__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.tools__title {
  color: var(--azul);
  font-weight: 800;
  line-height: 1.15;
  font-size: clamp(1.7rem, 2.7vw, 2.2rem);
  margin: 0 0 12px;
}
.tools__title .accent {
  color: var(--laranja);
}
.tools__desc {
  color: var(--texto);
  line-height: 1.75;
  margin: 0 0 16px;
  max-width: 560px;
}
.tools__link {
  color: var(--azul);
  font-weight: 600;
  text-decoration: underline;
}

.tools-card {
  position: relative;
  background: #fbf8f3;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.12);
}
.tools-img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1; /* Mantém quadrada */
  object-fit: cover; /* Corta a imagem pra preencher o quadrado */
  border-radius: 14px; /* Mantém o arredondado */
}

.sticker {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  color: #001989;
  font-size: 20px;
  z-index: 2;
}
.sticker--tl {
  left: -18px;
  top: 22px;
}
.sticker--tr {
  right: -10px;
  top: 58px;
}

/* responsivo */
@media (max-width: 992px) {
  .tools__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.depo {
  padding: 48px 0;
  font-family: Poppins, sans-serif;
}
.depo__container {
  margin: 0 auto;
  padding: 0 20px;
}
.depo__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: start;
}

/* left */
.dep-rotulo {
  color: #8a94a6;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.dep-title {
  margin: 6px 0 12px;
  font-weight: 800;
  color: var(--azul);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  line-height: 1.1;
}
.dep-p {
  color: #374151;
  line-height: 1.8;
  margin: 10px 0;
  max-width: 520px;
}
.dep-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  border: 2px solid var(--laranja);
  border-radius: 28px;
  padding: 0px 0px 0px 18px;
  color: var(--laranja);
  font-weight: 500;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.dep-cta .arrow {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--laranja);
  color: #fff;
  font-weight: 800;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.dep-cta:hover {
  background: var(--laranja);
  color: #fff;
}
.dep-cta:hover .arrow,
.arrow:hover {
  background: #fff;
  color: var(--laranja);
}

/* right */
.dep-media {
  position: relative;
}
.dep-img {
  width: 100%;
  height: 30rem;
  display: block;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  aspect-ratio: 1 / 1; /* Mantém quadrada */
  object-fit: cover; /* Corta a imagem pra preencher o quadrado */
}
 

/* card */
.dep-card {
  position: relative;
  margin-top: -46px;
  margin-left: 48px;
  background: var(--card);
  border-radius: 14px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.14);
  padding: 18px 18px 14px 18px;
  max-width: 520px;
}
.dep-card__bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--laranja);
  border-radius: 14px 0 0 14px;
}
.dep-card__text {
  color: #334155;
  line-height: 1.7;
  margin: 0 0 10px;
}
.dep-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.author {
  font-weight: 700;
  color: #64748b;
}
.stars i {
  color: #ffb300;
  margin-left: 2px;
}

/* resp */
@media (max-width: 992px) {
  .depo__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .dep-card {
    margin-left: 0;
        max-width: 80%!important;
  }
}

@media (max-width: 768px) {
  .depo__grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .dep-card {
    margin-left: 0 !important; /* elimina empurrão lateral */
    max-width: 100% !important; /* ocupa toda a largura da coluna */
  }

  .dep-img,
  .dep-video {
    width: 100% !important;
    height: auto !important; /* deixa a altura se ajustar */
    max-height: 300px; /* opcional pra não estourar a tela */
    object-fit: cover;
  }

  .dep-cta {
    width: 100%; /* botão grande no mobile */
           justify-content: space-between;
  }
}


.news {
  padding: 48px 0;
  font-family: Poppins, sans-serif;
}
.news__container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.news__title {
  text-align: center;
  font-weight: 800;
  color: var(--azul);
  margin: 0 0 6px;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
}
.news__sub {
  text-align: center;
  color: #657084;
  margin: 0 0 22px;
}

.news__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
}

.news-featured .nf__img-wrap {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
}
.news-featured img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.nf__tag {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  background: #e6f7f0;
  color: #159d63;
  font-weight: 700;
  font-size: 0.6rem;
  padding: 6px 12px;
  border-radius: 999px;
}
.nf__title {
  margin: 10px 0 6px;
  font-weight: 800;
  color: var(--azul);
  font-size: 1.1rem;
}
.nf__title a {
  color: inherit;
  text-decoration: none;
}
.title a{
  font-size: 1rem !important;

}
.nf__desc {
  color: #3a4652;
  line-height: 1.6;
  margin: 0 0 8px;
}
.nf__cta {
  color: var(--azul);
  font-weight: 600;
  text-decoration: underline;
}

.news-list {
  display: grid;
  gap: 18px;
}
.news-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  align-items: center;
}
.news-card .thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.news-card img {
  width: 130px;
  height: 100px;
  object-fit: cover;
  display: block;
}
.news-card .tag {
  position: absolute;
  right: 8px;
  bottom: 8px;
  background: #e5f3ff;
  color: #1368d6;
  font-weight: 700;
   font-size: 0.6rem;
  padding: 4px 8px;
  border-radius: 999px;
}
.news-card .title {
  font-weight: 700;
  color: var(--azul);
  margin: 0 0 4px;
}
.news-card .desc {
  color: #5a6472;
  line-height: 1.5;
  margin: 0;
}

/* resp */
@media (max-width: 992px) {
  .news__grid {
    grid-template-columns: 1fr;
  }
  .news-card {
    grid-template-columns: 120px 1fr;
  }
}
.dep-media{ position:relative; }
.dep-play{
  position:absolute; inset:0; display:grid; place-items:center; cursor:pointer;
   
}
.dep-play.hide{ display:none !important; } 

.dep-video {
  width: 100% !important;
  height: 40rem!important;        /* ou a altura que você quiser manter */
  object-fit: cover;    /* corta o excesso para preencher */
  object-position: center; /* centraliza o corte */
  border-radius: 8px;   /* opcional: cantos arredondados */
  background: #000;     /* fundo preto quando não tem poster */
}