/* PAGINA DE CONTACTO */

.contacto-page {
  min-height: 100vh;
  background: #e8e3dc;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.contacto-card {
  width: 90%;
  max-width: 760px;
  background: #f6f3ef;
  text-align: center;
  padding: 60px 45px;
  border-radius: 26px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.10);
}

.contacto-card h1 {
  font-size: 56px;
  margin: 0;
  color: #222;
}

.contacto-card h2 {
  font-size: 28px;
  font-weight: 400;
  color: #555;
  margin: 12px 0 30px;
}

.intro-contacto {
  font-size: 20px;
  margin-bottom: 35px;
  color: #333;
}

.contacto-datos {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.dato {
  background: #ebe7e3;
  padding: 28px 30px;
  border-radius: 20px;
  width: 300px;
}

.dato h3 {
  margin: 0 0 12px;
  font-size: 22px;
  color: #111;
}

.dato a {
  color: #111;
  text-decoration: none;
  font-size: 18px;
}

.dato a:hover {
  text-decoration: underline;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.buttons a {
  text-decoration: none;
  background: silver;
  color: black;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 17px;
  transition: 0.25s ease;
}

.buttons a:hover {
  background: pink;
  transform: translateY(-2px);
}

