/* container do texto */
body.efa-page .title {
  max-width: 750px;
  margin: 0 auto 40px auto;
}

/* texto principal */
body.efa-page .title h5 {
  text-align: justify;
  margin-top: -50px;
  margin-bottom: 12px;
  font-weight: 500;
}

/* centrar */
body.efa-page .title .efa-link {
  text-align: center;
  margin-top: 20px;
}

/* 🔴 link com mais especificidade */
body.efa-page .title .efa-link a:link,
body.efa-page .title .efa-link a:visited,
body.efa-page .title .efa-link a:active {
  color: #B22222;
  font-weight: 600;
  text-decoration: none;
}

/* hover */
body.efa-page .title .efa-link a:hover {
  color: #B22222;
  text-decoration: underline;
}


/* Cursos */ 
/* CARD */
body.efa-page .efa-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* hover efeito */
body.efa-page .efa-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* imagem */
body.efa-page .efa-card-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* corpo */
body.efa-page .efa-card-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* título */
body.efa-page .efa-card-body h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* descrição */
body.efa-page .efa-card-body p {
  font-size: 14px;
  color: #666;
  flex-grow: 1;
}

/* botão */
body.efa-page .efa-card-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 12px;
  background: #B22222;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

/* hover botão */
body.efa-page .efa-card-btn:hover {
  background: #8b1a1a;
  color: #fff;
}