/* Fuente y reset minimal */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: linear-gradient(180deg, #faf7f2 0%, #f4f1eb 100%);
  color: #6b5c43;
  display: grid;
  place-items: center;
}

/* Contenedor central */
.hero {
  width: 100%;
  padding: 40px 16px;
  display: grid;
  place-items: center;
  min-height: 100vh;
}

/* Tarjeta elegante */
.card {
  text-align: center;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 48px 40px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(210, 190, 150, 0.35);
}

/* Logo grande */
.logo {
  max-width: 340px;
  width: 80vw;
  height: auto;
  display: block;
  margin: 0 auto 28px;
}

/* Título "Próximamente" estilo lujo */
h1 {
  margin: 0;
  font-size: clamp(28px, 5vw, 48px);
  letter-spacing: 0.35em;
  font-weight: 600;
  color: #b38b4a; /* dorado suave */
  text-transform: uppercase;
}

/* Footer sutil */
footer {
  margin-top: 28px;
  font-size: 14px;
  color: #8b7a5a;
}
footer a { color: inherit; text-decoration: none; border-bottom: 1px dotted rgba(179,139,74,0.5); }
footer a:hover { border-bottom-style: solid; }
