.btn-pink {
  background-color: #fe4b72;
  color: white;
  border-radius: 25px;
  padding: 20px 70px;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2); /* sombra suave */
}


.btn-pink:hover {
  background-color: #fff;
  color: #fe4b72;
  border: #fe4b72 solid 2px;
}

body {
  font-family: "Inter", sans-serif;}

footer p{
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.5;
  margin: 0;
}

header nav a {
  font-weight: bold;
  margin-left: 20px;
}
nav a:hover{
  color: #003a28 !important;
}
.bg-white{
  border-radius: 20px;
}

#provas-anteriores a{
  color: #FFF;
  background-color: #003a28;
  border: none;
  font-weight: 600;
  padding: 15px 15px;
  text-decoration: none;
  border-radius: 10px;
}

#provas-anteriores a:hover{
  color: #003A28;
  border: #003A28 solid 2px;
  background-color: transparent;
}

.card-financiamento{
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* sombra suave */
    border-radius: 20px;

}

.financiamento-titulo {
  font-size: 40px;
  font-weight: 900;
  color: #003a28;
}

.financiamento-texto {
  font-weight: 600;
  text-align: justify;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.financiamento-card-bg {
  background-color: #fff;
}

.financiamento-logo-box {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.financiamento-link-box {
  background-color: #003a28;
  padding: 15px;
}

@media (max-width: 767.98px) {
  .financiamento-titulo {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .financiamento-titulo {
    font-size: 24px;
  }

  .financiamento-texto {
    text-align: left;
    font-size: 14px;
    padding: 0 5px;
  }

  .financiamento-logo-box {
    height: 90px;
  }

  .financiamento-link-box {
    padding: 10px;
  }

  .financiamento-link-box a {
    font-size: 13px;
    padding: 6px 16px;
  }
}

@media (max-width: 400px) {
  .financiamento-logo-box {
    height: 70px;
  }
}
#financiamentos a{
  text-decoration: none;
  background-color: #FFF;
  color: #003a28;
  padding: 7px 25px;
  border-radius: 20px;
  font-weight: 600;
}

#financiamentos a:hover{
  text-decoration: none;
  background-color: #003a28;
  color: #FFF;
  border: #FFF solid 2px;
}

  .btn-zap-zap {
    border: 0px;
    border-radius: 10px;
    padding: 5px 10px;
    background-color: #25d366;
    color: #fff;
    transition: background-color 0.3s ease;
  }

.btn-zap-zap:hover{
  background-color: #FFF;
  color: #25d366;
  border: #25d366 solid 2px;
  
}
.contato{
  background-color: #ccff00;
}
.social-icons a {
  background-color: #FFF;
  color: #003a28;
  font-size: 24px;

  width: 50px;
  height: 50px;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
}

.social-icons a:hover{
  color: #ccff00;
  background: #003a28;
}
.img-financiamento {
  max-height: 80px;
  width: auto;
  height: auto;
}

.whatsapp-fixo {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    font-size: 32px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 9999;
    animation: pulse 1.5s infinite;
    transition: transform 0.3s ease;
  }

  .whatsapp-fixo:hover {
    transform: scale(1.2);
    background-color: #1ebe5b;
  }

   @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
      transform: scale(1.1);
      box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }



@media (max-width: 576px) {
  .img-financiamento {
    max-height: 50px !important;
  }
}

@media (max-width: 400px) {
  .img-financiamento {
    max-height: 40px !important;
  }
}


/* Garantir que botões não estourem em telas pequenas */
@media (max-width: 576px) {
  .btn-pink {
    padding: 12px 30px;
    font-size: 16px;
  }

  #contato {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ===== DESKTOP (>=992px) ===== */
@media (min-width: 992px) {
  header {
    position: fixed;          /* menu fixo */
    top: 0;
    width: 100%;
    background: transparent;   /* fundo transparente */
    z-index: 1030;
    padding: 10px 0;
  }

  .menu-principal {
    flex-direction: row;
    justify-content: flex-end; /* menu à direita */
    gap: 16px;
  }

  .menu-principal .nav-link {
    font-size: 16px;
    padding: 0 10px;
    color: #fff;               /* branco */
    font-weight: bold;
  }

  .menu-principal .nav-link:hover {
    color: #fe4b72;            /* hover rosa */
  }

  .logo-desktop {
    display: block;             /* logo visível */
  }
}

/* ===== MOBILE / TABLET (<992px) ===== */
@media (max-width: 991.98px) {

  header {
    position: static !important;
    background-color: #003a28;
    padding: 8px 0;
  }

  /* Esconde a logo desktop */
  .logo-desktop {
    display: none !important;
  }

  /* Menu */
  .menu-principal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;

    margin: 20px auto 0;
    padding: 0;

    gap: 14px;
  }

  .menu-principal .nav-item {
    list-style: none;
    margin: 0;
    padding: 0;

    width: 100%;
    display: flex;
    justify-content: center;
  }

  /* Todos os botões */
  .menu-principal .nav-link,
  .menu-principal .btn-nav-cta {

    display: flex !important;
    justify-content: center;
    align-items: center;

    width: min(95%, 320px);
    height: 48px;

    margin: 0;
    padding: 0 !important;

    box-sizing: border-box;

    border-radius: 10px;

    font-size: 15px;
    font-weight: 600;

    text-align: center;
    text-decoration: none !important;

    transition: .25s ease;
  }

  /* Botões verdes */
  .menu-principal .nav-link {
    background: #01340f;
    border: 1px solid rgba(255,255,255,.18);
    color: #fff !important;
  }

  .menu-principal .nav-link:hover {
    background: #015016;
    color: #fff !important;
  }

  /* Botão rosa */
  .menu-principal .btn-nav-cta {
    background: #fe4b72 !important;
    border: 1px solid #fe4b72 !important;
    color: #fff !important;
  }

  .menu-principal .btn-nav-cta:hover {
    background: #ff6488 !important;
    border-color: #ff6488 !important;
  }

  /* Remove a barrinha do desktop */
  .menu-principal .nav-link::after {
    display: none !important;
  }
}


/* ===================================================== */
/* ===========  SEÇÃO SELECIONE INSCRIÇÃO  ============= */
/* ===================================================== */

.inscricao-section {
  background-color: #fff;
}

.inscricao-icon-top {
  width: 90px;
  height: 90px;
  background-color: #ffe3ec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 34px;
  color: #fe4b72;
}

.inscricao-titulo {
  font-size: 40px;
  font-weight: 900;
  color: #003a28;
  margin-bottom: 10px;
}

.inscricao-subtitulo {
  color: #6b6b85;
  font-size: 17px;
  margin-bottom: 35px;
}

.inscricao-opcoes {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.inscricao-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background-color: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(33, 33, 95, 0.08);
  border-bottom: 4px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: center;
  flex: 1 1 260px;
  max-width: 320px;
}

.inscricao-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(33, 33, 95, 0.15);
  border-bottom-color: #fe4b72;
}

.inscricao-card-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background-color: #ffe3ec;
  color: #fe4b72;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.inscricao-card-texto {
  flex: unset;
}

.inscricao-card-texto h5 {
  color: #003a28;
  font-weight: 800;
  font-size: 19px;
  margin-bottom: 3px;
}

.inscricao-card-texto p {
  color: #777;
  font-size: 14px;
  margin-bottom: 0;
}

.inscricao-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: #fe4b72;
  font-weight: 700;
  font-size: 14px;
  padding: 0 0 4px;
  border-radius: 0;
  margin-top: 4px;
  border: none;
  border-bottom: 2px solid #fe4b72;
  transition: gap 0.3s ease, color 0.3s ease, letter-spacing 0.3s ease;
}

.inscricao-card-btn::after {
  content: "\f061"; /* fa-arrow-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 13px;
  transition: transform 0.3s ease;
}

.inscricao-card:hover .inscricao-card-btn {
  color: #fe4b72;
  gap: 12px;
}

.inscricao-card:hover .inscricao-card-btn::after {
  transform: translateX(4px);
}

@media (max-width: 767.98px) {

  .inscricao-opcoes {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .inscricao-card {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    max-width: 100%;
    width: 100%;

    padding: 20px;
    gap: 12px;
  }

  .inscricao-card-icon {
    flex-shrink: 0;
  }

  .inscricao-card-texto {
    width: 100%;
  }

  .inscricao-card-texto h5 {
    margin-bottom: 6px;
  }

  .inscricao-card-texto p {
    margin-bottom: 0;
    line-height: 1.5;
  }

  .inscricao-card-btn {
    align-self: center;
    margin: 6px 0 0;
    width: fit-content;
  }

}

.inscricao-seguranca {
  margin-top: 30px;
  color: #8a8aa3;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.inscricao-seguranca strong {
  color: #6b6b85;
}

@media (max-width: 991.98px) {
  .inscricao-titulo {
    font-size: 34px;
  }
}

@media (max-width: 576px) {

  .inscricao-titulo {
    font-size: 28px;
  }

  .inscricao-icon-top {
    width: 70px;
    height: 70px;
    font-size: 26px;
    margin-bottom: 18px;
  }

  .inscricao-card {
    padding: 18px;
    gap: 10px;
  }

  .inscricao-card-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    font-size: 22px;
  }

  .inscricao-card-texto h5 {
    font-size: 18px;
  }

  .inscricao-card-texto p {
    font-size: 14px;
  }

  .inscricao-card-btn {
    margin: 4px 0 0;
    width: fit-content;
  }

}

/* ===================================================== */
/* ===========  SEÇÃO PROVAS ANTERIORES  ================ */
/* ===================================================== */

.provas-section {
  background-color: #f2f9f6;
}

.provas-eyebrow {
  color: #fe4b72;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  margin-bottom: 8px;
}

.provas-eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background-color: #fe4b72;
  border-radius: 2px;
  opacity: 0.5;
}

.provas-titulo {
  font-size: 42px;
  font-weight: 900;
  color: #003a28;
  margin-bottom: 12px;
}

.provas-titulo .text-pink {
  color: #fe4b72;
}

.provas-subtitulo {
  color: #5c5c78;
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

.provas-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 40px;
}

.provas-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #c6c6e0;
}

.provas-dots .provas-dots-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  color: #fe4b72;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin: 0 8px;
  box-shadow: 0 4px 10px rgba(33, 33, 95, 0.1);
}

.provas-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.provas-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(33, 33, 95, 0.08);
  flex: 1 1 380px;
  max-width: 480px;
  text-align: left;
}

.provas-card-badge {
  display: inline-block;
  background-color: #ffe3ec;
  color: #fe4b72;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.provas-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.provas-card-ano {
  font-size: 36px;
  font-weight: 900;
  color: #003a28;
  margin: 0;
}

.provas-card-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background-color: #ffe3ec;
  color: #fe4b72;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.provas-card.provas-card-alt .provas-card-icon {
  background-color: #d9f7ec;
  color: #00e59d;
}

.provas-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #f7f7fb;
  border-radius: 14px;
  padding: 15px 18px;
  margin-bottom: 22px;
}

.provas-item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background-color: #ffe3ec;
  color: #fe4b72;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.provas-item-texto h5 {
  color: #003a28;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 2px;
}

.provas-item-texto p {
  color: #777;
  font-size: 13px;
  margin-bottom: 0;
}

.provas-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #003a28;
  color: #fff;
  font-weight: 700;
  padding: 15px;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.provas-card-btn:hover {
  background-color: #fe4b72;
  color: #fff;
}

.provas-info {
  background-color: #eaf9f2;
  border-radius: 20px;
  padding: 35px 40px;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.provas-info-col {
  flex: 1 1 320px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.provas-info-col + .provas-info-col {
  border-left: 1px solid #d7d9ef;
  padding-left: 30px;
}

.provas-info-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background-color: #fff;
  color: #003a28;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.provas-info-col.provas-info-dica .provas-info-icon {
  color: #fe4b72;
}

.provas-info-col h6 {
  color: #003a28;
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 6px;
}

.provas-info-col p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .provas-titulo {
    font-size: 34px;
  }

  .provas-info {
    padding: 30px 25px;
  }
}

@media (max-width: 767.98px) {
  .provas-titulo {
    font-size: 28px;
  }

  .provas-card {
    padding: 22px;
  }

  .provas-info-col + .provas-info-col {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #d7d9ef;
    padding-top: 25px;
  }
}

@media (max-width: 480px) {
  .provas-card {
    flex-basis: 100%;
    padding: 20px;
  }

  .provas-info {
    padding: 25px 20px;
  }
}

@media (max-width: 400px) {
  .provas-card-ano {
    font-size: 28px;
  }

  .provas-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 18px;
  }
}

/* ===================================================== */
/* ===========  SEÇÃO GABARITO E RESULTADOS  ============ */
/* ===================================================== */

.gabarito-section {
  background: linear-gradient(120deg, #003a28 0%, #00694c 100%);
  border-radius: 24px;
  padding: 55px 30px;
  position: relative;
  overflow: hidden;
}

.gabarito-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ccff00;
  color: #003A28;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.gabarito-titulo {
  color: #fff;
  font-weight: 900;
  font-size: 40px;
  margin-bottom: 15px;
}

.gabarito-titulo .text-pink {
  color: #fe4b72;
}

.gabarito-subtitulo {
  color: #d7d9f2;
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.gabarito-botoes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.gabarito-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #fff;
  color: #003a28;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gabarito-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
  color: #003a28;
}

.gabarito-btn-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
}

.gabarito-btn-icon.gabarito-icon-pink {
  background-color: #fe4b72;
}

.gabarito-btn-icon.gabarito-icon-blue {
  background-color: #00e59d;
}

.gabarito-btn i.fa-chevron-right {
  color: #b3b3c6;
  font-size: 14px;
  margin-left: 4px;
}

@media (max-width: 991.98px) {
  .gabarito-titulo {
    font-size: 34px;
  }

  .gabarito-section {
    padding: 40px 20px;
  }
}

@media (max-width: 576px) {
  .gabarito-titulo {
    font-size: 28px;
  }

  .gabarito-btn {
    width: 100%;
    justify-content: space-between;
  }
}

/* ===================================================== */
/* ===============  SEÇÃO CURSOS  ====================== */
/* ===================================================== */

/* --- Hero / topo azul --- */
.cursos-hero {
  background: linear-gradient(120deg, #003a28 0%, #00694c 100%);
}

.cursos-label {
  color: #fe4b72;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.cursos-title {
  color: #fff;
  font-weight: 900;
  font-size: 42px;
}

.cursos-title .text-pink {
  color: #fe4b72;
}

.cursos-subtitle {
  color: #fff;
  opacity: 0.85;
  font-size: 17px;
  max-width: 700px;
  margin: 15px auto 0;
}

/* --- Área da listagem --- */
.cursos-lista {
  background-color: #f3faf7;
}

/* Busca */
.curso-search {
  position: relative;
  flex: 1 1 260px;
}

.curso-search input {
  border-radius: 30px;
  padding: 12px 20px 12px 45px;
  border: 1px solid #e0e0ef;
}

.curso-search input:focus {
  border-color: #003A28;
  box-shadow: none;
}

.curso-search i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #9a9ac0;
}

/* Filtros (pills) */
.filtro-btn {
  border: 1px solid #e0e0ef;
  background-color: #fff;
  color: #003a28;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 30px;
  white-space: nowrap;
  transition: 0.3s;
}

.filtro-btn:hover {
  border-color: #003A28;
  color: #003A28;
}

.filtro-btn.active {
  background-color: #003A28;
  border-color: #003A28;
  color: #fff;
}

/* Cards de curso */
.curso-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.curso-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.curso-card-img {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.curso-card-img img {
    display: block;
    width: 100%;
    height: auto;
}

.curso-icon-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 32px;
  height: 32px;
  background-color: #003a28;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.curso-card-body {
  padding: 18px 20px;
}

.curso-card-body h5 {
  color: #003a28;
  font-weight: 800;
  margin-bottom: 2px;
  font-size: 18px;
}

.curso-modalidade {
  color: #003a286a;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}

.curso-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  color: #555;
  margin-bottom: 0;
}

.curso-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.curso-card-footer {
  border-top: 1px solid #f0f0f5;
  padding: 12px 20px;
}

.curso-card-footer a {
  color: #003a286a;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
}

.curso-card-footer a i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.curso-card-footer a:hover i {
  transform: translateX(4px);
}

/* CTA final da seção */
.cursos-cta {
  background-color: #fff;
  border-radius: 16px;
  padding: 18px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 650px;
  margin: 30px auto 0;
  text-decoration: none;
  transition: 0.3s;
}

.cursos-cta:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cursos-cta-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background-color: #ccff00;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.cursos-cta-text strong {
  display: block;
  color: #003a28;
  font-size: 15px;
}

.cursos-cta-text span {
  color: #777;
  font-size: 13px;
}

.cursos-cta i.fa-arrow-right {
  margin-left: auto;
  color: #003a28;
}

/* --- Responsivo --- */
@media (max-width: 991.98px) {
  .cursos-title {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .cursos-title {
    font-size: 32px;
  }

  .filtro-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .cursos-title {
    font-size: 26px;
  }

  .cursos-subtitle {
    font-size: 15px;
  }

  .curso-search {
    flex: 1 1 100%;
  }

  .curso-search input {
    font-size: 14px;
    padding: 10px 16px 10px 42px;
  }

  .filtro-btn {
    padding: 7px 14px;
    font-size: 13px;
  }

  .curso-card-img {
    height: 150px;
  }

  .cursos-cta {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    padding: 16px 18px;
  }

  .cursos-cta i.fa-arrow-right {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .curso-card-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .curso-card-img {
    height: 170px;
  }
}

@media (max-width: 400px) {
  .curso-card-body {
    padding: 14px 15px;
  }

  .curso-card-body h5 {
    font-size: 16px;
  }

  .curso-meta {
    font-size: 13px;
    gap: 10px;
  }
}

/* ===================================================== */
/* ===============  HEADER (NAVBAR)  ==================== */
/* ===================================================== */

header {
    position: relative;
    width: 100%;
    background: #001706;
    padding: 0px 0;
}

.header-pill {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0px 0;
}

.logo-header {
  height: 38px;
  width: auto;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: #fff;
}

.menu-principal {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: auto;
  gap: 28px;
  list-style: none;
}

.menu-principal .nav-link {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 4px 0;
  position: relative;
  transition: color 0.3s ease;
}

.menu-principal .nav-link:hover {
  color: #fe4b72;
}

.menu-principal .nav-link.active {
  color: #fe4b72;
}

.menu-principal .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background-color: #fe4b72;
  border-radius: 3px;
}

/* Botão CTA "Inscreva-se" */
.btn-nav-cta {
  background-color: #fe4b72;
  color: #fff !important;
  font-weight: 700;
  padding: 12px 26px !important;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: 0.3s;
}

.btn-nav-cta:hover {
  background-color: #fff;
  color: #fe4b72 !important;
  border: 2px solid #fe4b72;
  padding: 10px 24px !important;
}

.btn-nav-cta::after {
  display: none !important; /* não herda o sublinhado do .active */
}

/* ===== DESKTOP (>=992px) ===== */
@media (min-width: 992px) {
  .menu-principal {
    flex-direction: row;
  }
}

/* ===== MOBILE / TABLET (<992px) ===== */
@media (max-width: 991.98px) {
  .header-pill {
    flex-wrap: wrap;
    border-radius: 25px;
    padding: 10px 18px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-principal {
    display: none;
    flex-direction: column;
    width: 100%;
    align-items: flex-start !important;
    gap: 14px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
  }

  .menu-principal.show {
    display: flex;
  }

  .nav-item-cta {
    width: 100%;
  }

  .btn-nav-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .logo-header {
    height: 32px;
  }

  .header-pill {
    padding: 8px 14px;
  }
}





