.contact {
  padding: 100px 8%;
  text-align: center;
  background: linear-gradient(180deg, #020617, #0f172a);
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact .subtitle {
  color: #94a3b8;
  margin-bottom: 40px;
}

.contact-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

/* BOTÓN WHATSAPP */
.btn-whatsapp {
  background: #22c55e;
  color: white;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

/* INFO */
.contact-info p {
  color: #cbd5f5;
  margin: 5px 0;
}
@media (max-width: 768px) {
  .contact h2 {
    font-size: 2rem;
  }
}