/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fondo y fuente general */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #19afd4, #8e9eab);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contenedor principal */
.contact-box {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 400px;
  width: 90%;
  transition: transform 0.3s ease;
}

.contact-box:hover {
  transform: scale(1.02);
}

/* Título */
.contact-box h2 {
  color: #333;
  margin-bottom: 30px;
  font-size: 26px;
}

/* Botones */
.contact-box button {
  display: block;
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.email-btn {
  background-color: #007bff;
  color: white;
}

.email-btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.whatsapp-btn {
  background-color: #25D366;
  color: white;
}

.whatsapp-btn:hover {
  background-color: #1ebe5b;
  transform: translateY(-2px);
}
/*fnfbhbferhj*/
.volver-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #007bff;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, transform 0.2s;
}

.volver-btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

