/* ==============================
   Sección Infografía Trilema
   ============================== */

.trilema-infografia {
  padding: 4rem 1rem;
  background: #ffffff;
}

/* Grilla: 3 columnas / 2 filas */
.cards-5 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Card */
.card {
  background: #f6f4f1;
  border: 1px solid #dddddd;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  height: 100%;
}

/* Título */
.card h3 {
  font-family: 'Montserrat Classic', 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #c8102e;
}

/* Segundo texto / descripción */
.card p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #502804;
  margin-bottom: 1.2rem;
}

/* Imagen inferior (doble tamaño) */
.card img {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 768px) {
  .cards-5 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card img {
    max-width: 200px;
  }
}
