:root {
  --bg: #121f2b;
  --brand: #19bdb6;
  --wa: #25D366;
  --mail: #1778d6;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Montserrat', sans-serif;
  background: radial-gradient(1000px 600px at 60% -10%, #24364b 0%, var(--bg) 60%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 20px;
}
.construction { max-width: 500px; }
.icon {
  margin-bottom: 20px;
}

.icon img {
  width: 240px;      /* Ajusta el tamaño de la imagen */
  height: auto;
  display: block;
  margin: 0 auto;
}

.contact { display: flex; flex-direction: column; gap: 12px; }
.btn {
  display: inline-block;
  padding: 14px;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.wa { background: var(--wa); }
.btn.mail { background: var(--mail); }
