/* Card2s FDV - Fórmula do Vinho */

.card2 {
  border-radius: 12px;
  transition: all 0.3s ease;
  border: none;
  background-color: rgb(255, 255, 255);
}

.card2:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card2-title {
  font-weight: 600;
  font-size: 1.2rem;
  color: indigo; /* Marrom escuro (vinho) */
}

.card2-text {
  color: #5f5f5f; /* Cinza médio, melhor contraste para leitura */
}

.card2-body {
  padding: 2rem;
}

/* Ícones */
.card2-title .bi {
  font-size: 1.4rem;
  vertical-align: middle;
}

/* Responsividade extra (opcional) */
@media (max-width: 768px) {
  .card2-title {
    font-size: 1.1rem;
  }

  .card2-body {
    padding: 1rem;
  }
}

/* Efeito pulsante suave para botões */

@keyframes pulsar {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(90, 47, 12, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(90, 47, 12, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(90, 47, 12, 0.4);
  }
}

.btn-success {
  animation: pulsar 2s infinite ease-in-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Melhor acessibilidade visual */
.btn-success:hover,
.btn-success:focus {
  animation: none;
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(90, 47, 12, 0.6);
}

/* Container e fundo */
#about-course {
  background-color: #f9f9f9;
  padding: 80px 0;
}

/* Título principal */
#about-course h2 {
  font-weight: 700;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

/* Preço destacado */
#about-course h2 .text-success {
  font-size: 1.5rem;
  font-weight: 600;
  color: #28a745;
  margin-left: 1rem;
}

/* Descrição */
#about-course .lead {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 1.5rem;
}

/* Botões */
#about-course .btn-success {
  background-color: #28a745;
  border-color: #28a745;
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: background-color 0.25s ease, transform 0.2s ease;
}
#about-course .btn-success:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

/* Lista de benefícios */
#about-course ul {
  list-style: none;
  padding: 0;
}
#about-course ul li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: #333;
  line-height: 1.4;
}
#about-course ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: #28a745;
  font-size: 1.25rem;
}

/* Responsividade */
@media (max-width: 767px) {
  #about-course h2 {
    font-size: 2rem;
  }
  #about-course .lead {
    font-size: 1.1rem;
  }
  #about-course ul li {
    font-size: 1rem;
  }
  #about-course .btn-success {
    width: 100%;
    text-align: center;
  }
}
