/* ===================== 🚀 CAPACITACIONES ===================== */
#capacitaciones {
  margin-top: 10rem;
  background-color: #f9f9f9;
  border-top: 2px solid #ffffff;
}
.container-cap {
  display: grid;
  justify-content: center;
  align-items: center;
}

/* TÍTULO */
.title-section {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 3rem;
  text-align: center;
}


/* GRID PRINCIPAL */
#capacitaciones .card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Imagen | Card | Card */
  gap: 2rem;
  /* max-width: 1200px; */
  margin: 0 50px;
  align-items: stretch;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  #capacitaciones .card-list {
    grid-template-columns: 1fr;
  }
}

#capacitaciones .card-content {
  background-color: #ffffff;
  border-radius: var(--border-radius-md);
  padding: 2rem;
  box-shadow: var(--box-shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#capacitaciones .card-list .card-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(197, 195, 195, 0.15);
}

.cap-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--color-heading);
}

#capacitaciones .card-list p {
  color: var(--color-text-body);
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 0;
}

#capacitaciones .card-list li {
  color: var(--color-text-body);
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0;
}

#capacitaciones .card-image {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CARD IMAGEN */
#capacitaciones .card-image {
  align-items: center;
  justify-content: center;
  width: 500px;
}

/* IMAGEN */
#capacitaciones img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.btn-excel {
  margin-top: 10px;
  border: solid 3px #66bb6a;
  color: #66bb6a;
  font-size: 17px;
  font-weight: 600;
  width: 100%;
}

.btn-excel:hover {
  background-color: #66bb6a;
  color: white;
}
/* TEXTO */
#capacitaciones .card h5 {
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--color-heading);
}

#capacitaciones .card p {
  color: var(--color-text-body);
  font-size: 1.5rem;
  line-height: 1.6;
  margin: 0;
}
