/* ============================================================
   BOOMBOUND LP — GAME STYLE
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow:    #FFD93D;
  --yellow-dk: #E6BC1A;
  --orange:    #FF6B35;
  --red:       #E63946;
  --blue:      #4CC9F0;
  --blue-dk:   #0096C7;
  --dark:      #0D0B1E;
  --dark2:     #13102A;
  --mid:       #1C1840;
  --purple:    #6A1FBE;
  --purple-lt: #8B3FD8;
  --green:     #06D6A0;
  --white:     #FFFFFF;
  --cream:     #FFF4D6;

  --font-h: 'Bangers', cursive;
  --font-b: 'Nunito', sans-serif;

  /* comic border style */
  --shadow-y: 5px 5px 0;
  --shadow-b: 4px 4px 0;
  --bw: 3px;
  --r: 14px;
  --r-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   TIPOGRAFIA
   ============================================================ */
.section-title {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 3px;
  line-height: 1.1;
  color: var(--yellow);
  -webkit-text-stroke: 2px #a0600a;
  paint-order: stroke fill;
  text-shadow: 4px 4px 0 rgba(0,0,0,0.5);
}
.section-title--center { text-align: center; }
.section-title--white  {
  color: var(--white);
  -webkit-text-stroke: 2px rgba(0,0,0,0.6);
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: var(--r);
  font-family: var(--font-h);
  font-size: 1.3rem;
  letter-spacing: 1.5px;
  border: var(--bw) solid transparent;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.12s;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-4px); }
.btn:active { transform: translateY(1px); box-shadow: none !important; }

.btn--primary {
  background: var(--yellow);
  color: var(--dark);
  border-color: #a0600a;
  box-shadow: var(--shadow-y) #a0600a;
}
.btn--primary:hover { box-shadow: 7px 7px 0 #a0600a; }

.btn--secondary {
  background: var(--blue);
  color: var(--dark);
  border-color: var(--blue-dk);
  box-shadow: var(--shadow-y) var(--blue-dk);
}
.btn--secondary:hover { box-shadow: 7px 7px 0 var(--blue-dk); }

.btn--outline {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
}
.btn--outline:hover {
  background: var(--yellow);
  color: var(--dark);
}

.btn--sm  { padding: 0.4rem 1.1rem; font-size: 1rem; }
.btn--lg  { padding: 1.1rem 3rem; font-size: 1.5rem; }
.btn img  { width: 22px; height: 22px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(13, 11, 30, 0.35);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(106, 31, 190, 0.4);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav__links a {
  font-family: var(--font-h);
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--cream);
  transition: color 0.2s;
}
.nav__links a:not(.btn):hover { color: var(--yellow); }

.nav__toggle { display: none; }
.nav--scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.5); }

.lang-switcher {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.lang-switcher__btn {
  display: block;
  opacity: 0.45;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: opacity 0.2s, transform 0.15s, border-color 0.15s;
  line-height: 0;
}
.lang-switcher__btn img {
  width: 32px;
  height: 22px;
  display: block;
  object-fit: cover;
}
.lang-switcher__btn:hover  { opacity: 0.85; transform: scale(1.1); }
.lang-switcher__btn.active { opacity: 1; border-color: var(--yellow); transform: scale(1.1); }

/* ============================================================
   HERO — full-bleed bg image
   ============================================================ */
.hero {
  position: relative;
  height: 140svh;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  background-image: url('/img/bg.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* overlay gradiente: preserva arte no topo, escurece base para conteúdo */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0)      0%,
    rgba(0,0,0,0)      45%,
    rgba(10,5,30,0.65) 65%,
    rgba(10,5,30,0.92) 82%,
    rgba(10,5,30,1)   100%
  );
  z-index: 1;
}

.hero__logo-wrap {
  position: absolute;
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}
.hero__logo {
  width: min(420px, 70vw);
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.7));
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  padding: 0 2rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.hero__logo {
  width: min(440px, 82vw);
  filter:
    drop-shadow(0 0 40px rgba(255,107,53,0.8))
    drop-shadow(0 6px 20px rgba(0,0,0,0.9));
  animation: floatLogo 3.5s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero__tagline {
  font-family: var(--font-h);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  letter-spacing: 1.5px;
  color: var(--cream);
  text-shadow: 0 2px 12px rgba(0,0,0,1), 0 0 30px rgba(0,0,0,0.8);
  max-width: 520px;
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}
.hero__sub a {
  color: var(--yellow);
  font-weight: 700;
  text-decoration: underline;
}

/* ============================================================
   EM BREVE (substitui stats)
   ============================================================ */
.comingsoon {
  background: linear-gradient(90deg, var(--purple) 0%, #3d0e8c 50%, var(--purple) 100%);
  border-top: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow);
  padding: 1.25rem 0;
  z-index: 3;
  position: relative;
}
.comingsoon__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  text-align: center;
}
.comingsoon__badge {
  font-family: var(--font-h);
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: var(--yellow);
  white-space: nowrap;
}
.comingsoon__inner p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 7rem 0 7rem;
  background: var(--dark2);
  position: relative;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__text .section-title { margin-bottom: 1.5rem; }

.about__text p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.about__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.about__list li {
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  padding: 0.7rem 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}
.about__list li:hover {
  border-color: var(--yellow);
  background: rgba(255,217,61,0.08);
}

.about__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* card estilo game de apresentação */
.about__card {
  background: linear-gradient(135deg, var(--mid) 0%, #0d0b1e 100%);
  border: 3px solid var(--purple-lt);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-y) var(--purple);
  padding: 2.5rem 2rem;
  text-align: center;
  width: 100%;
  max-width: 320px;
  position: relative;
  overflow: hidden;
}
.about__card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106,31,190,0.4) 0%, transparent 70%);
}

.about__badge {
  font-family: var(--font-h);
  font-size: 2.5rem;
  letter-spacing: 4px;
  background: var(--green);
  color: var(--dark);
  padding: 0.5rem 2rem;
  border-radius: var(--r);
  border: 3px solid #039373;
  box-shadow: var(--shadow-b) #039373;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.about__platforms {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}
.about__platforms span {
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 0.4rem 1.2rem;
  font-family: var(--font-h);
  font-size: 1rem;
  letter-spacing: 1px;
}

.about__rating {
  font-family: var(--font-h);
  font-size: 1.5rem;
  color: var(--yellow);
  letter-spacing: 2px;
  margin-top: 0.5rem;
}

/* ============================================================
   MOBILES (features)
   ============================================================ */
.mobiles {
  padding: 7rem 0;
  background: var(--dark);
  position: relative;
}
.mobiles::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: var(--dark2);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.mobiles__sub {
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  margin-top: 0.75rem;
  margin-bottom: 3rem;
}

.mobiles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.mobile-card {
  background: var(--mid);
  border: 2px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: 1.5rem 1rem 1.25rem;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.mobile-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--blue), var(--yellow));
  opacity: 0;
  transition: opacity 0.2s;
}
.mobile-card:hover {
  transform: translateY(-10px);
  border-color: var(--yellow);
  box-shadow: 0 16px 40px rgba(255,217,61,0.12), 0 4px 0 var(--yellow);
}
.mobile-card:hover::after { opacity: 1; }

.mobile-card img {
  width: 100%;
  max-width: 120px;
  height: 110px;
  object-fit: contain;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.6));
  transition: transform 0.3s;
}
.mobile-card:hover img {
  transform: scale(1.1) translateY(-4px);
}

.mobile-card h3 {
  font-family: var(--font-h);
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  color: var(--yellow);
  margin-bottom: 0.5rem;
  -webkit-text-stroke: 0.5px #a0600a;
}
.mobile-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================
   HOW TO
   ============================================================ */
.howto {
  padding: 7rem 0;
  background: var(--dark2);
  position: relative;
}

.howto::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: var(--dark);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.howto__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
  position: relative;
}

/* linha conectando os passos */
.howto__steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--red), var(--purple));
  z-index: 0;
}

.howto__step {
  text-align: center;
  padding: 1.5rem 1rem 2rem;
  background: var(--mid);
  border: 2px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  position: relative;
  z-index: 1;
  transition: border-color 0.2s, transform 0.2s;
}
.howto__step:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}

.howto__num {
  width: 60px;
  height: 60px;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-h);
  font-size: 2rem;
  letter-spacing: 1px;
  border-radius: 50%;
  border: 3px solid #a0600a;
  box-shadow: 3px 3px 0 #a0600a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 2;
}

.howto__step h3 {
  font-family: var(--font-h);
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
.howto__step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ============================================================
   SIGNUP
   ============================================================ */
.signup {
  padding: 7rem 0;
  background: var(--dark);
  position: relative;
}

.signup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: var(--dark2);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

/* box central estilizado */
.signup__box {
  background: linear-gradient(135deg, var(--mid) 0%, #1a0a3d 100%);
  border: 3px solid var(--purple-lt);
  border-radius: var(--r-lg);
  box-shadow: 0 0 60px rgba(106,31,190,0.4), var(--shadow-y) var(--purple);
  padding: 4rem 3rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* brilho de canto */
.signup__box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76,201,240,0.2) 0%, transparent 70%);
}
.signup__box::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
}

.signup__box .section-title { margin-bottom: 0.75rem; }

.signup__sub {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.signup__fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.signup__input {
  flex: 1;
  min-width: 200px;
  padding: 0.9rem 1.25rem;
  border-radius: var(--r);
  border: 3px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.signup__input::placeholder { color: rgba(255,255,255,0.35); }
.signup__input:focus {
  border-color: var(--yellow);
  background: rgba(255,217,61,0.06);
}

.signup__msg {
  margin-top: 1.25rem;
  font-weight: 700;
  font-size: 1rem;
  min-height: 1.4em;
  position: relative;
  z-index: 1;
}
.signup__msg--ok    { color: var(--green); }
.signup__msg--error { color: #ff8080; }

/* ============================================================
   DOWNLOAD
   ============================================================ */
.download {
  padding: 7rem 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, #1a0845 0%, var(--dark) 70%);
  text-align: center;
}

.download .section-title { margin-bottom: 1rem; }

.download__sub {
  color: rgba(255,255,255,0.6);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.download__btns {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.store-badge {
  display: block;
  opacity: 0.55;
  filter: grayscale(0.2);
  cursor: not-allowed;
  border-radius: var(--r);
  border: 3px solid rgba(255,255,255,0.15);
  overflow: hidden;
  transition: opacity 0.2s;
}
.store-badge img { height: 62px; display: block; }

.download__note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #080714;
  border-top: 3px solid rgba(106,31,190,0.5);
  padding: 3rem 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 2rem;
}
.footer__brand img   { height: 36px; margin-bottom: 0.5rem; }
.footer__brand p     { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer__email       { font-size: 0.85rem; color: var(--yellow); opacity: 0.8; transition: opacity 0.2s; margin-top: 0.25rem; display: inline-block; }
.footer__email:hover { opacity: 1; text-decoration: underline; }

.footer__links,
.footer__social {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__links a,
.footer__social a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  font-weight: 700;
  transition: color 0.2s;
}
.footer__links a:hover,
.footer__social a:hover { color: var(--yellow); }

/* honeypot — completamente invisível para humanos */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ============================================================
   ANIMAÇÕES DE ENTRADA
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in.visible {
  animation: fadeUp 0.55s ease both;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */

/* --- tablet --- */
@media (max-width: 960px) {
  .about__inner   { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__visual  { align-items: center; }
  .about__card    { max-width: 100%; }

  .mobiles__grid  { grid-template-columns: repeat(2, 1fr); }

  .footer__inner  { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .footer__links  { justify-content: center; }
}

/* --- mobile --- */
@media (max-width: 700px) {
  /* nav */
  .nav__inner              { padding: 0 0.75rem; flex-wrap: nowrap; gap: 0.5rem; }
  .nav__toggle             { display: none; }
  .nav__links              { gap: 0.5rem; flex-wrap: nowrap; }
  .nav__links a            { font-size: 0.8rem; letter-spacing: 0; }
  .nav__links .btn--sm     { padding: 0.3rem 0.7rem; font-size: 0.8rem; }
  .lang-switcher           { gap: 0.35rem; flex-shrink: 0; }
  .lang-switcher__btn img  { width: 24px; height: 16px; }

  /* hero */
  .hero {
    height: 100svh;
    min-height: 600px;
    background-position: center center;
  }
  .hero__logo-wrap { top: 14%; }
  .hero__logo      { width: min(260px, 72vw); }
  .hero__content   { padding: 0 1.25rem 3rem; gap: 1rem; }
  .hero__tagline   { font-size: 1rem; }
  .hero__btns      { gap: 0.75rem; }
  .btn--lg         { padding: 0.9rem 1.75rem; font-size: 1.2rem; }

  /* coming soon */
  .comingsoon__inner { gap: 1rem; padding: 0 1rem; }

  /* sobre */
  .about          { padding: 4rem 0; }
  .about__inner   { gap: 2rem; }
  .about__list    { grid-template-columns: 1fr; }
  .about__card    { max-width: 100%; }

  /* mobiles */
  .mobiles        { padding: 4rem 0; }
  .mobiles__grid  { grid-template-columns: repeat(2, 1fr); gap: 0.875rem; }
  .mobile-card img { height: 85px; }

  /* signup */
  .signup         { padding: 4rem 0; }
  .signup__box    { padding: 2.5rem 1.25rem; }
  .signup__fields { flex-direction: column; }
  .signup__input  { min-width: unset; width: 100%; }
  .signup__fields .btn { width: 100%; }

  /* download */
  .download       { padding: 4rem 0; }
  .download__btns { gap: 1rem; }
  .store-badge img { height: 50px; }

  /* footer */
  .footer__inner  { grid-template-columns: 1fr; text-align: center; gap: 1rem; }
  .footer__links  { justify-content: center; flex-wrap: wrap; gap: 1rem; }
  .footer__brand img { margin: 0 auto 0.5rem; }
}

/* --- mobile pequeno --- */
@media (max-width: 400px) {
  .hero__tagline { font-size: 0.9rem; }
  .btn--lg       { padding: 0.8rem 1.25rem; font-size: 1.1rem; }
  .btn img       { width: 18px; height: 18px; }
  .section-title { font-size: clamp(1.8rem, 8vw, 2.5rem); }
}
