.lp-hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  width: 100%;
  height: 100vh;
  background: url("/img/banner-cursos.png") center;
  color: #ffffff;
}

.lp-content-wrapper {
  max-width: 800px;
  animation: fadeIn 1.5s ease-in-out;
}

/* Texto superior pequeno */
.lp-tagline {
  display: block;
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* Título Principal */
.lp-main-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.lp-italic-title {
  font-style: italic;
}

/* Linha divisória fina */
.lp-divider {
  width: 60px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  margin: 2rem auto;
}

/* Parágrafo de descrição */
.lp-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.95;
}

.lp-courses-section {
  background-color: #f8faff; /* Fundo levemente azulado para destacar os cards brancos */
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.lp-courses-container {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 30px; /* Espaçamento entre os cards */
}

/* Card Individual */
.lp-course-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 35% 1fr; /* Imagem ocupa 35% da largura */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.lp-course-card:hover {
  transform: translateY(-5px);
}

/* Imagem do Card */
.lp-course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Garante que a imagem preencha o espaço sem distorcer */
}

/* Informações do Card */
.lp-course-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-course-title {
  font-family: "Playfair Display", serif;
  color: #033565;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.lp-course-text {
  color: #6a8095;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 25px;
}

/* Metadados (Horas e Modalidade) */
.lp-course-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #94a3b8;
}

.lp-course-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Link Saiba Mais */
.lp-course-link {
  color: #5b8098;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.lp-course-link:hover {
  color: #033565;
  text-decoration: underline;
}

/* Responsividade para Celulares */
@media (max-width: 768px) {
  .lp-course-card {
    grid-template-columns: 1fr; /* Empilha imagem e texto no mobile */
  }

  .lp-course-image {
    height: 200px;
  }

  .lp-course-info {
    padding: 25px;
  }
}

/* Animação suave de entrada */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
