.contacto {
  text-align: center;
  padding: 3rem 1rem;
  background: #f9f9f9;
  border-radius: 12px;
  max-width: 600px;
  margin: 4rem auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contacto h2 {
  font-size: 2.8rem;
  color: #e94e1b;
  margin-bottom: 1rem;
}

.contacto p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #444;
}

.btn-contacto-group {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-whatsapp, .btn-email, .btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: white;
  font-weight: 700;
  padding: 0.75rem 1.6rem;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
  min-width: 120px;
  justify-content: center;
}

.btn-whatsapp {
  background-color: #25d366; /* verde WhatsApp */
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
}
.btn-whatsapp:hover {
  background-color: #1ebe57;
}

.btn-email {
  background-color: #0077cc; /* azul correo */
  box-shadow: 0 4px 12px rgba(0, 119, 204, 0.5);
}
.btn-email:hover {
  background-color: #005fa3;
}

.btn-instagram {
  background-color: #E1306C; /* rosa/rojo Instagram */
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.5);
}
.btn-instagram:hover {
  background-color: #b82f5e;
}

.btn-whatsapp img, .btn-email img, .btn-instagram img {
  width: 24px;
  height: 24px;
}
