/* ═══ PÁGINA INICIAL — Fruit Money ═══ */
:root {
  --home-orange: #ff6b35;
  --home-gold-soft: #ffd080;
  --home-bg: #1a0f0a;
  --font-display: 'Outfit', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.page-home {
  overflow: hidden;
  background: var(--home-bg);
  min-height: 100dvh;
}

.home-app {
  position: relative;
  min-height: 100dvh;
  isolation: isolate;
}

.home-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-color: #2a1810;
  background-size: cover;
  background-position: center;
  filter: saturate(0.9) brightness(0.55) contrast(1.05);
}

.home-bg-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 50% 28%, rgba(255, 140, 60, 0.16) 0%, transparent 58%),
    linear-gradient(180deg,
      rgba(34, 18, 10, 0.78) 0%,
      rgba(24, 14, 8, 0.82) 45%,
      rgba(14, 8, 5, 0.94) 100%
    );
}

.home-bg-glow {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at 50% 32%, rgba(255, 180, 60, 0.12) 0%, transparent 45%);
}

.home-main {
  position: relative;
  z-index: 3;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem calc(2rem + env(safe-area-inset-bottom));
  text-align: center;
}

.home-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 22rem;
}

.home-logo {
  display: block;
  width: min(240px, 72vw);
  height: auto;
  filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.55));
  background: transparent;
}

.home-desc {
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

.home-desc strong {
  color: var(--home-gold-soft);
  font-weight: 700;
}

.home-actions {
  width: min(340px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.home-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.88rem 0.75rem;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.home-btn:active {
  transform: scale(0.98);
}

.home-btn--primary {
  color: #1a0f0a;
  background: linear-gradient(180deg, #ffe082 0%, #ffb300 100%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 20px rgba(255, 179, 0, 0.32);
}

.home-btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.home-btn--demo {
  grid-column: 1 / -1;
  padding: 1.08rem 1rem;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(180deg, #ff834f 0%, var(--home-orange) 45%, #e63900 100%);
  border: 1px solid rgba(255, 200, 140, 0.35);
  box-shadow:
    0 8px 22px rgba(255, 107, 53, 0.42),
    0 2px 0 rgba(179, 45, 0, 0.75) inset;
}

.home-foot {
  margin-top: 1.35rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

.home-foot a {
  color: var(--home-gold-soft);
  font-weight: 700;
  text-decoration: none;
}

.home-foot a:hover {
  text-decoration: underline;
}

@media (min-width: 480px) {
  .home-logo {
    width: min(280px, 60vw);
  }

  .home-desc {
    font-size: 0.82rem;
  }
}
