/* ===== RESET BÁSICO ===== */
.contacto-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

/* ===== CONTENIDO ===== */
.contacto-main h2 {
  color: #2d8a45;
  font-size: 1.2rem;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.links a {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f6332;
  text-decoration: underline;
  margin: 30px 0;
  transition: 0.3s ease;
}

.links a:hover {
  color: #2d8a45;
  transform: scale(1.05);
}
