/* =============================
   FIGURAS 3D CON VOZ
============================= */

.voz-section {
  background: #f9fafb;
  padding: 0px 20px;
}

.voz-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* TEXTO */
.voz-text h1 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.voz-subtitle {
  font-size: 1.2rem;
  color: #2563eb;
  margin-bottom: 20px;
}

.voz-text p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 20px;
}

.voz-lista {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.voz-lista li {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* EJEMPLOS */
.voz-ejemplos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
 
}

.voz-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.voz-card img {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  margin-bottom: 15px;
}

.voz-card h4 {
  margin-bottom: 8px;
}

.voz-card p {
  font-size: 0.95rem;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .voz-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
