/* ============================================================
   BT GAMES — Landing Page
   ============================================================ */

/* ── NAV ─────────────────────────────────────────────────────── */
.nav-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 52px;
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 10;
}
.nav-logo {
  height: 44px; width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
}
.btn-sm { padding: 10px 22px; font-size: 13px; border-radius: 8px; font-weight: 700; }
.btn-lg { padding: 15px 34px; font-size: 16px; border-radius: 10px; font-weight: 800; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(150deg, #0e1d3a 0%, #1B2F5E 55%, #1a3565 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* grade decorativa de fundo */
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244,121,32,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,121,32,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

/* ── HERO BODY: 3 colunas — alinhado igual ao .container ──────── */
.hero-body {
  flex: 1;
  display: flex;
  align-items: stretch;
  gap: 40px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 36px;
}

/* coluna esquerda: texto — mesma altura do card */
.hero-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 24px 32px 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900; line-height: 1.35;
  color: #ffffff; letter-spacing: -.3px;
  margin-bottom: 16px;
  animation: fadeUp .7s .05s ease both;
}
.hero-highlight {
  color: var(--orange); position: relative;
}
.hero-highlight::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
  border-radius: 2px;
}
.hero-desc {
  font-size: 15px; color: rgba(255,255,255,.72);
  line-height: 1.7; margin-bottom: 0;
  animation: fadeUp .7s .15s ease both;
}

/* coluna centro: celular */
.hero-phone-side {
  flex: 0 0 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phone-img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(-8px 16px 40px rgba(0,0,0,.5));
}

/* coluna direita: login */
.hero-login-side {
  flex: 0 0 360px;
  display: flex;
  align-items: stretch;
}

.hero-login-card {
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 36px 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
}

/* ── LOGO DENTRO DO CARD ─────────────────────────────────────── */
.hlc-logo {
  height: auto;
  width: 100%;
  max-width: 200px;
  object-fit: contain;
  align-self: flex-start;
  margin-bottom: 20px;
  display: block;
}

.hlc-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 900;
  color: #0d1d36;
  margin-bottom: 4px;
}
.hlc-sub {
  font-size: 15px; color: #6b87a8;
  margin-bottom: 24px;
}

/* ── CAMPOS ──────────────────────────────────────────────────── */
.hlc-field {
  display: flex; flex-direction: column; gap: 5px;
  margin-bottom: 14px;
}
.hlc-label {
  font-size: 12px; font-weight: 700;
  color: #374563; letter-spacing: .4px; text-transform: uppercase;
}
.hlc-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #dde5f0;
  border-radius: 10px;
  font-size: 14px; color: #0d1d36;
  background: #f8fafc;
  outline: none;
  transition: border-color .18s, box-shadow .18s, background .18s;
  box-sizing: border-box;
  font-family: var(--font-main);
}
.hlc-input::placeholder { color: #a8bbd4; }
.hlc-input:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(244,121,32,.09);
}
.hlc-input.is-error { border-color: #e53e3e; background: #fff8f8; }
.hlc-input.is-ok    { border-color: #38a169; }

.hlc-pwd-wrap { position: relative; }
.hlc-pwd-wrap .hlc-input { padding-right: 46px; }
.hlc-eye {
  position: absolute; right: 12px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: #8aaac8; cursor: pointer;
  display: flex; align-items: center; padding: 2px;
  transition: color .15s;
}
.hlc-eye:hover { color: var(--orange); }

.hlc-error {
  font-size: 11.5px; color: #e53e3e;
  font-weight: 600; min-height: 15px; display: block;
}

/* ── BOTÕES ──────────────────────────────────────────────────── */
.hlc-btn-row {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.hlc-btn {
  flex: 1;
  padding: 12px 10px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 900; letter-spacing: .3px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: background .18s, transform .18s, box-shadow .18s;
  text-decoration: none;
  border: none;
}
.hlc-btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 4px 16px rgba(244,121,32,.35);
}
.hlc-btn-primary:hover:not(:disabled) {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(244,121,32,.45);
  opacity: 1;
}
.hlc-btn-primary:disabled { opacity: .6; cursor: not-allowed; }
.hlc-btn-secondary {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.hlc-btn-secondary:hover {
  background: rgba(244,121,32,.06);
  transform: translateY(-1px);
  opacity: 1;
}

/* ── LINKS ───────────────────────────────────────────────────── */
.hlc-links {
  margin-top: 16px; text-align: center;
}
.hlc-link {
  font-size: 13px; color: #6b87a8;
  text-decoration: none;
  transition: color .15s;
}
.hlc-link:hover { color: var(--orange); }

.hlc-signup {
  text-align: center;
  font-size: 13px; color: #6b87a8;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid #edf0f7;
}
.hlc-signup-link {
  color: var(--orange); font-weight: 700; text-decoration: none;
}
.hlc-signup-link:hover { text-decoration: underline; }

/* ── TOAST ───────────────────────────────────────────────────── */
.page-landing .toast {
  padding: 10px 14px; border-radius: 8px;
  font-size: 13px; font-weight: 600; margin-bottom: 14px;
}
.page-landing .toast-ok    { background:#f0faf4; color:#276749; border:1px solid #c6f6d5; }
.page-landing .toast-error { background:#fff5f5; color:#c53030; border:1px solid #fed7d7; }
.page-landing .toast-info  { background:#ebf8ff; color:#2b6cb0; border:1px solid #bee3f8; }

/* ── SEÇÃO FEATURES ──────────────────────────────────────────── */
.features {
  background: var(--bg-root);
  padding: 80px 0 72px;
  position: relative; z-index: 4;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 36px; }
.section-title {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 900;
  color: var(--text-primary); text-align: center; margin-bottom: 8px;
}
.section-sub {
  text-align: center; color: var(--text-muted);
  font-size: 15px; margin-bottom: 52px;
}
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 24px;
  transition: all var(--t-base);
  box-shadow: var(--shadow-sm);
}
.feat-card:hover {
  border-color: rgba(244,121,32,.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(244,121,32,.08);
}
.feat-card-icon { font-size: 30px; margin-bottom: 14px; display: block; }
.feat-card h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800;
  color: var(--text-primary); margin-bottom: 8px;
}
.feat-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── CTA FINAL ───────────────────────────────────────────────── */
.cta-final {
  background: linear-gradient(150deg, #142448, #1B2F5E 60%);
  padding: 80px 0;
}
.cta-final .section-title { color: #fff; }
.cta-final .section-sub   { color: rgba(255,255,255,.65); }

/* ── ANIMAÇÕES ───────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── RESPONSIVO ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-body       { gap: 24px; padding: 100px 32px 52px; }
  .hero-phone-side { flex: 0 0 280px; }
  .hero-login-side { flex: 0 0 300px; }
}

@media (max-width: 768px) {
  /* mobile: esconde texto e celular, centraliza só o card */
  .hero-body       { justify-content: center; padding: 32px 20px 40px; }
  .hero-content    { display: none; }
  .hero-phone-side { display: none; }
  .hero-login-side { flex: none; width: 100%; max-width: 360px; margin: 0 auto; }
  .features-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .hero-body       { padding: 24px 16px 36px; }
  .hero-login-side { max-width: 100%; }
  .hero-login-card { padding: 24px 18px; border-radius: 14px; }
}

@media (max-width: 480px) {
  .hero-login-card { padding: 28px 22px; border-radius: 16px; }
  .features-grid   { grid-template-columns: 1fr; }
  .nav-logo        { height: 36px; }
}
