/* bjjteam.com.br — landing BJJTEAM */

:root {
  --bg: #0d0d0f;
  --bg-accent: #1a1512;
  --text: #f4f2ef;
  --muted: #9a9590;
  --orange: #e85d04;
  --orange-dim: #c44e03;
  --ring: rgba(232, 93, 4, 0.35);
}

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

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  -webkit-font-smoothing: antialiased;
}

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(232, 93, 4, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(30, 58, 138, 0.12), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-accent) 100%);
  z-index: -1;
}

main {
  width: 100%;
  max-width: 32rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 6vw, 3rem);
}

.logo-wrap {
  position: relative;
  width: min(100%, 24rem);
  padding: clamp(1.25rem, 4vw, 2rem);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 24px 48px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-wrap::before {
  content: "";
  position: absolute;
  inset: -12%;
  border-radius: 1.75rem;
  background: radial-gradient(circle at 50% 30%, var(--ring) 0%, transparent 65%);
  filter: blur(28px);
  opacity: 0.85;
  z-index: -1;
}

.logo-wrap img {
  position: relative;
  width: 100%;
  max-width: 20rem;
  height: auto;
  display: block;
}

.tagline {
  margin: 0;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
  max-width: 22ch;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.25rem;
}

.store-row a {
  display: inline-block;
  line-height: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.store-row a:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.store-row a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
  border-radius: 8px;
}

.store-row img {
  height: 52px;
  width: auto;
  display: block;
}

/* Google badge is wider — cap height only */
.store-row a[href*="play.google"] img,
.store-row .badge-play {
  height: 64px;
}

footer {
  margin-top: auto;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

footer a {
  color: var(--muted);
  text-decoration: none;
}

footer a:hover {
  color: var(--text);
}

@media (prefers-reduced-motion: reduce) {
  .store-row a {
    transition: none;
  }
}
