/* =========================================================
   EligeVotar · IEEG Guanajuato
   Landing minimalista: logo centrado + "Próximamente"
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --magenta: #d32369;
  --purple: #622d4f;
  --orange: #e9647d;
  --font-display: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html,
body {
  min-height: 100%;
  width: 100%;
}

body {
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  width: 100%;
  min-height: 100vh;
  padding: clamp(24px, 6vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 6vw, 56px);
}

.logo {
  display: block;
  max-width: min(100%, 620px);
  width: clamp(260px, 60vw, 620px);
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.proximamente {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 9vw, 96px);
  line-height: 1;
  letter-spacing: -0.005em;
  text-align: center;
  background: linear-gradient(
    120deg,
    var(--purple) 0%,
    var(--magenta) 55%,
    var(--orange) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
