body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
}

/* Melhor contraste na seção Hero  */
.hero-section {
  background: radial-gradient(circle at top left, #f0f7ff 0%, #ffffff 80%);
  padding: 6rem 0;
}

/* Estilos para os cards */
.impact-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-align: center;
}

/* Ajuste de ícones */
.impact-card i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #0d6efd;
}

/* Animação ao passar o mouse (cards) */
.impact-card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-missao-text {
  font-size: 1rem;
}

footer {
  font-size: 1rem;
  letter-spacing: 0.2px;
}

/* Cards de cursos */
.card-curso {
  will-change: transform;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-curso:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.card-curso .card-body {
  padding: 1.25rem;
}

.card-curso-descricao {
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.875rem;
  color: #555;
}

.badge {
  font-size: 0.76rem;
  font-weight: 500;
  padding: 0.5em 0.8em;
}

.form-check {
  margin-bottom: 0.5rem;
}

.form-check-input {
  cursor: pointer;
}

.form-check-label {
  cursor: pointer;
}

.form-check-label {
  user-select: none;
}

/* Seção de links para contato - icons */
#contato-section ul {
  text-align: center;
  padding: 0;
  margin: 0;
}

#contato-section li {
  display: inline-block;
  margin: 0 25px;
  transition: transform 0.2s ease;
}

#contato-section li:hover {
  transform: scale(1.1);
}

#contato-section ul li:first-child {
  margin-left: 0px;
}

#contato-section a {
  text-decoration: none;
  color: inherit;
}

/* Texto/seção "Sobre nós" */
#sobre-section-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

#sobre-section h1 {
  font-size: 2.2rem;
  text-align: center;
  position: relative;
  padding-bottom: 0.8rem;
  margin-bottom: 1.8rem;
}

#sobre-section h2 {
  font-size: 1.3rem;
}

.text-underline {
  position: relative;
  padding-bottom: 0.8rem;
}

.text-underline::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background-color: #0d6efd;
  border-radius: 2px;
}

@media (max-width: 768px) {
  #sobre-section-text {
    font-size: 1rem;
    padding: 0 15px;
  }

  #sobre-section h1 {
    font-size: 1.8rem;
  }

  #sobre-section h2 {
    font-size: 1.1rem;
  }
}

/* Melhor contraste na navegação dos formulários */
.formulario-link {
  color: #0645ad;
}

.formulario-link a:hover,
.formulario-link a:focus {
  color: #0b0080;
}
