/* Fuentes personalizadas */
@font-face {
  font-family: 'DT-Henbrinks';
  src: url('dthebrinksitalic-yyqad.otf') format('opentype');
}

@font-face {
  font-family: 'GW-Bantley';
  src: url('GwBantleyRegularTrial-j9dzv.ttf') format('truetype');
}

body {
  background: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
}

/* Contenedor principal */
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Icono superior */
.icono {
  width: 99px;
  height: auto;
  margin-bottom: 10px;
  margin-top: -63px; /* SUBIDO */
}

/* Logo */
.logo {
  width: 374px;
  height: auto;
  margin-bottom: 50px;
  margin-top: 102px; /* SUBIDO */
}

/* Texto central */
.mensaje {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.mensaje em {
  font-style: italic;
}

/* Botón */
.btn {
  display: inline-block;
  padding: 10px 30px;
  border: 2px solid #f3a8b1;
  border-radius: 25px;
  color: #f3a8b1;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #f3a8b1;
  color: #000;
}

/* Footer */
footer {
  margin-top: 50px;
  font-size: 0.7rem;
  color: #ccc;
  line-height: 1.4;
  font-family: 'DT-Henbrinks';
}

footer .jeroglifico {
  font-family: 'GW-Bantley';
  font-size: 20pt;
  Color: #f3a8b1;
  Text-decoration: none;
}

/* Quitar subrayado incluso al hover */
footer .jeroglifico:hover {
  color: #f3a8b1;
  text-decoration: none; /* SIN SUBRAYADO */
}

/* Responsive */
@media (max-width: 768px) {
  .logo { width: 250px; }
  .icono { width: 70px; }
  .mensaje { font-size: 0.9rem; padding: 0 10px; }
}
