/* Welcome page — Evengy Pro (light hex theme) */

html, body { margin: 0; padding: 0; }
body {
  font-family: Arial, "Helvetica Neue", Helvetica, system-ui, sans-serif;
  background: #f4f6f8;
  color: #2b3540;
}

.welcome {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 56px 20px;
  isolation: isolate;
  background: #ffffff url("/evengy-wallpaper.webp") center/cover no-repeat;
}

.welcome::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,.85) 100%);
}

.welcome-inner {
  position: relative;
  max-width: 1160px;
  width: 100%;
  text-align: center;
  animation: rise .8s ease-out both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

.welcome-logo {
  width: min(340px, 62vw);
  height: auto;
  display: block;
  margin: 0 auto 1.6rem;
  filter: drop-shadow(0 12px 30px rgba(46,160,220,.18));
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.02); }
}

/* ===== Grilla de hexágonos ===== */
.hex-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: 1.4rem auto 0;
}
@media (min-width: 900px) {
  .hex-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.4rem; }
}

.hex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: inherit;
  transition: transform .35s ease, filter .35s ease;
}
.hex img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 26px rgba(46,160,220,.18));
  transition: transform .35s ease, filter .35s ease;
}
.hex:hover img { transform: translateY(-6px) rotate(-1.5deg) scale(1.03); filter: drop-shadow(0 18px 34px rgba(46,160,220,.30)); }

.hex-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .04em;
}
.hex-active .hex-cta {
  background: linear-gradient(135deg, #2ea0dc, #1f7fb8);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(46,160,220,.35);
}
.hex-soon { cursor: default; }
.hex-soon .hex-cta {
  background: rgba(255,255,255,.85);
  color: #6b7784;
  border: 1px solid rgba(107,119,132,.25);
}
.hex-soon img { opacity: .92; }

.welcome-foot {
  margin: 2.6rem 0 0;
  color: #1a2530;
  font-size: .82rem;
  letter-spacing: .02em;
  line-height: 1.5;
  font-weight: 600;
  background: rgba(255,255,255,.92);
  padding: .6rem 1.1rem;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(46,160,220,.15);
  display: inline-block;
}
.welcome-foot a {
  color: #0a6ea8;
  text-decoration: underline;
  text-decoration-color: #2ea0dc;
  text-underline-offset: 3px;
  font-weight: 800;
  transition: color .25s ease;
}
.welcome-foot a:hover {
  color: #2ea0dc;
}


.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
