/* =========================
   CONTACTO
========================= */

.contacto-info {
  background: var(--bg-light);
}

.contacto-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
  color: inherit;
}

.contact-card i {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 15px;
}

.contact-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-card:hover {
  transform: translateY(-6px);
}

/* =========================
   FORMULARIO
========================= */

.contacto-form {
  background: #fff;
}

.formulario {
  max-width: 600px;
  margin: auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-family: inherit;
  font-size: 14px;
}

.form-group textarea {
  resize: none;
  min-height: 140px;
}

/* =========================
   MAPA
========================= */

.contacto-mapa iframe {
  width: 100%;
  height: 420px;
  border-radius: var(--radius);
  border: none;
  box-shadow: var(--shadow);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .contacto-cards {
    grid-template-columns: 1fr;
  }
}
