.banner-fornecedores-section {
  background: linear-gradient(
    180deg,
    hsla(348, 92%, 42%, 1) 0%,
    hsla(327, 80%, 40%, 1) 100%
  );
}

.banner-fornecedores-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banner-fornecedores-body .banner-title::before {
  content: "Conteúdos recomendáveis";
}

.logout-btn {
  width: 140px;
  height: 40px;
  border-radius: 24px;
  background-color: #C50030;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.logout-btn:hover {
  background: #b8001c;
}

.card-curso {
  background: white;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0px 3px 6px #00000029;
  /* cursor: pointer; */
  transition: transform 0.2s;
  width: 352px;
  height: 270px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card-curso-header {
  width: 100%;
  min-height: 175px;
  margin: 0 auto 15px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-curso-body {
  padding: 0 15px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}

.card-curso-title {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
}

.card-curso-saiba-mais {
  color: #3B69FF;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.conteudos-recomendaveis-main-section {
  display: flex;
  margin-top: -90px;
  justify-content: center;
}

.conteudos-recomendaveis-main-container {
  width: 100%;
  max-width: 1088px;
  padding-bottom: 111px;
}

.conteudos-recomendaveis-main-body {
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
}

.cards-conteudos-recomendaveis.grid-container {
  gap: 16px;
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1142px) {
  .cards-conteudos-recomendaveis.grid-container {
    max-width: 720px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cards-conteudos-recomendaveis.grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }
}

/* Estilos para botão de quiz desabilitado */
.fornecedores-download-button.disabled,
#btn-cartilha-quiz.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.fornecedores-download-button.disabled .semibold,
#btn-cartilha-quiz.disabled .semibold {
  color: #666;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}
