.btn-pink {
  background-color: #ff4eb5;
  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: #ff4eb5;
  border: #ff4eb5 solid 2px;
}

body {
  font-family: "Inter", sans-serif;}

.bg-dark {
  background-color: #21215f !important;
}

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: #21215f !important;
}
.cursos-gradient {
  background-color: #2A32B7;
}

.bg-white{
  border-radius: 20px;
}

.text-gradient {
  background: linear-gradient(90deg, #2A32B7, #C43883);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-size: 25px;
  font-weight: 800;
}

#provas-anteriores a{
  color: #FFF;
  background-color: #2a32b7;
  border: none;
  font-weight: 600;
  padding: 15px 15px;
  text-decoration: none;
  border-radius: 10px;
}

#provas-anteriores a:hover{
  color: #FFF;
  border: #FFF solid 2px;
  background-color: #C43883;
}

.card-financiamento{
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* sombra suave */
    border-radius: 20px;

}
#financiamentos a{
  text-decoration: none;
  background-color: #FFF;
  color: #2A32B7;
  padding: 7px 25px;
  border-radius: 20px;
  font-weight: 600;
}

#financiamentos a:hover{
  text-decoration: none;
  background-color: #2A32B7;
  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: #C43883;
}
.social-icons a {
  background-color: #FFF;
  color: #21215f;
  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: #C43883;
  background: #21215f;
}
.curso-link {
  display: block;
  padding: 10px;
  border-radius: 12px;
  transition: transform 0.3s ease;
  text-align: center;
}

.curso-link:hover {
  transform: scale(1.03);
}

.curso-img {
  width: 350px;     /* controle de tamanho padrão */
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.img-financiamento {
  max-height: 80px;
  width: auto;
  height: auto;
}

@media (max-width: 576px) {
  .img-financiamento {
    max-height: 50px !important;
  }
}

@media (max-width: 400px) {
  .img-financiamento {
    max-height: 40px !important;
  }
}


/* Tamanhos menores para celulares */
@media (max-width: 768px) {
  .curso-img {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .curso-img {
    width: 270px;
  }
}


/* Garantir que botões não estourem em telas pequenas */
@media (max-width: 576px) {
  .btn-pink {
    padding: 12px 30px;
    font-size: 16px;
  }

  .text-gradient {
    font-size: 18px;
    text-align: center;
  }

  header .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

}
@media (max-width: 576px) {
  #contato {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* @media (max-width: 991.98px) {
  header {
    display: none;
  }
} */

/* ===== 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: #ff4eb5;            /* hover rosa */
  }

  .logo-desktop {
    display: block;             /* logo visível */
  }
}

/* ===== MOBILE / TABLET (<992px) ===== */
@media (max-width: 991.98px) {
  header {
    position: static !important;  /* entra no fluxo */
    background-color: #222562;    /* fundo azul escuro */
    padding: 6px 0;
  }

  /* esconde a logo no mobile */
  .logo-desktop {
    display: none !important;
  }

  /* menu lado a lado, menor, quebra linha se necessário */
  .menu-principal {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .menu-principal .nav-item {
    list-style: none;
  }

  .menu-principal .nav-link {
    font-size: 14px;
    margin: 0;
    padding: 5px 10px;
    color: #fff !important;
    border-radius: 6px;
    text-align: center;

    text-decoration: underline;  /* adiciona o risco embaixo */
    text-underline-offset: 4px;  /* distância do texto */
    text-decoration-color: #FFF; /* cor do risco */
  }

  .menu-principal .nav-link:hover {
    color: #ff4eb5 !important;
  }
}



