/* ==========================================================================
   The Smart Bettor — Home (index.php) — estilos exclusivos desta página.
   Não é usado pelo painel /bets (ver css/style.css para isso).
   ========================================================================== */

:root {
  --bg: #12151A;
  --surface: #191D24;
  --surface-2: #20252D;
  --line: #2A3038;
  --text: #ECEFF2;
  --muted: #8B94A0;
  --green: #1FD17A;
  --green-soft: #0E3D28;
  --amber: #F4B942;
  --amber-soft: #3A2E10;
  --red: #FF5B52;
  --font-body: 'Poppins', sans-serif;
  --font-display: 'Sora', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

.home-page { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.home-page * { box-sizing: border-box; }
.home-page img { max-width: 100%; display: block; }
.home-page a { color: inherit; text-decoration: none; }
.home-page ::selection { background: var(--green); color: #05130C; }

.hp-wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.hp-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hp-eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }

.home-page h1, .home-page h2, .home-page h3, .home-page h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; margin: 0; }

.hp-section { padding: 88px 0; border-bottom: 1px solid var(--line); }
.hp-section-head { max-width: 620px; margin: 0 auto 48px; text-align: center; }
.hp-section-head.left { text-align: left; margin-left: 0; }
.hp-section-head h2 { font-size: clamp(26px, 4vw, 38px); margin-top: 12px; }
.hp-section-head p { color: var(--muted); margin-top: 14px; font-size: 15px; }

.hp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #05130C;
  font-family: var(--font-mono); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .05em;
  padding: 14px 28px; border-radius: 8px; border: 1px solid var(--green);
  transition: transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
}
.hp-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(31,209,122,.25); }
.hp-btn.outline { background: transparent; color: var(--text); border-color: var(--line); }
.hp-btn.outline:hover { border-color: var(--green); color: var(--green); box-shadow: none; }
.hp-btn.block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.hp-header { position: sticky; top: 0; z-index: 200; background: rgba(18,21,26,.86); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.hp-nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; max-width: 1160px; margin: 0 auto; padding: 8px 24px; }
.hp-brand img { height: 64px; width: auto; }
@media (max-width: 560px) { .hp-brand img { height: 52px; } }
.hp-links { display: flex; align-items: center; gap: 22px; }
.hp-links a { font-family: var(--font-mono); font-size: 11.5px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; transition: color .2s; }
.hp-links a:hover { color: var(--green); }
.hp-nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.hp-langsel { position: relative; }
.hp-langsel > button { display: flex; align-items: center; gap: 7px; background: var(--surface); border: 1px solid var(--line); color: var(--text); padding: 8px 10px; border-radius: 8px; cursor: pointer; font-family: var(--font-mono); font-size: 12px; }
.hp-langsel > button:hover { border-color: var(--green); }
.hp-langsel .chev { font-size: 9px; color: var(--muted); transition: transform .2s; }
.hp-langsel.open .chev { transform: rotate(180deg); }
.hp-langsel-menu { position: absolute; top: calc(100% + 10px); right: 0; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 6px; min-width: 150px; box-shadow: 0 16px 36px rgba(0,0,0,.5); display: none; flex-direction: column; gap: 2px; z-index: 60; }
.hp-langsel.open .hp-langsel-menu { display: flex; }
.hp-langsel-menu a { display: flex; align-items: center; gap: 9px; padding: 9px 10px; border-radius: 6px; font-family: var(--font-mono); font-size: 12.5px; color: var(--text); }
.hp-langsel-menu a:hover { background: var(--surface-2); color: var(--green); }

.hp-burger { display: none; flex-direction: column; gap: 4px; background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 10px 11px; cursor: pointer; }
.hp-burger span { width: 18px; height: 2px; background: var(--text); display: block; }
.hp-burger:hover { border-color: var(--green); }

@media (max-width: 900px) {
  .hp-links { position: fixed; top: 66px; left: 0; right: 0; background: var(--surface); flex-direction: column; align-items: flex-start; padding: 14px 24px 18px; gap: 2px; border-bottom: 1px solid var(--line); transform: translateY(-140%); transition: transform .25s ease; }
  .hp-links.open { transform: translateY(0); }
  .hp-links a { width: 100%; padding: 11px 0; font-size: 12.5px; }
  .hp-burger { display: flex; }
}

/* ---------- Hero ---------- */
.hp-hero { position: relative; padding: 96px 0 70px; overflow: hidden; }
.hp-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 12% 25%, rgba(31,209,122,.10), transparent 45%),
              radial-gradient(circle at 88% 65%, rgba(244,185,66,.07), transparent 42%);
}
.hp-hero-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.hp-hero-text { flex: 1 1 480px; min-width: 0; }
.hp-hero-visual { flex: 0 0 auto; display: flex; justify-content: center; }
@media (max-width: 900px) { .hp-hero-inner { flex-direction: column; text-align: center; gap: 20px; } .hp-hero-text { display: flex; flex-direction: column; align-items: center; } }

.hp-hero h1 { font-size: clamp(38px, 6.4vw, 68px); line-height: 1.12; margin: 20px 0 24px; }
.hp-hero h1 .hl { color: var(--green); }
.hp-quote { border-left: 3px solid var(--green); padding-left: 18px; font-style: italic; color: var(--muted); font-size: 16px; max-width: 560px; margin-bottom: 34px; }
@media (max-width: 900px) { .hp-quote { text-align: left; margin-left: auto; margin-right: auto; } }

/* Phone mockup */
.hp-phone-wrap { padding: 30px; }
.hp-phone {
  position: relative; width: 300px; aspect-ratio: 9/18.3;
  display: flex; flex-direction: column; border-radius: 32px;
  background: linear-gradient(165deg, #212831, #14181D);
  border: 2px solid var(--line);
  box-shadow: 0 0 0 1px rgba(31,209,122,.10), 0 30px 70px rgba(0,0,0,.55);
  padding: 14px 12px 18px;
}
.hp-phone-notch { width: 54px; height: 12px; background: #000; border-radius: 0 0 10px 10px; margin: 0 auto 10px; }
.hp-phone-statusbar { display: flex; align-items: center; justify-content: space-between; padding: 0 4px 10px; font-family: var(--font-mono); font-size: 9px; font-weight: 700; color: var(--text); }
.hp-phone-header { display: flex; align-items: center; gap: 9px; padding: 2px 6px 12px; border-bottom: 1px solid var(--line); }
.hp-tg-logo { width: 26px; height: 26px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #3fd0f7, #1a9bd8); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hp-phone-header .hp-tg-title { font-weight: 700; font-size: 13px; }
.hp-phone-header .hp-tg-sub { font-family: var(--font-mono); font-size: 9.5px; color: var(--green); }
.hp-tg-list { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; flex: 1; }
.hp-tg-row { display: flex; align-items: center; gap: 10px; padding: 9px; border-radius: 14px; background: var(--surface); border: 1px solid transparent; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
@media (hover: hover) { .hp-tg-row:hover { transform: scale(1.03); border-color: var(--green); background: var(--surface-2); } }
.hp-tg-avatar { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 1px solid rgba(255,255,255,.12); background: var(--surface-2); }
.hp-tg-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hp-tg-meta { flex: 1; min-width: 0; }
.hp-tg-name { font-weight: 700; font-size: 12.5px; }
.hp-tg-msg { font-size: 10.5px; color: var(--muted); }
.hp-tg-badge { font-family: var(--font-mono); font-size: 9px; font-weight: 700; padding: 3px 7px; border-radius: 20px; background: var(--green-soft); color: var(--green); flex-shrink: 0; }
.hp-tg-row.free .hp-tg-badge { background: var(--surface-2); color: var(--muted); }
.hp-phone-home { width: 74px; height: 3px; border-radius: 3px; background: var(--line); margin: 10px auto 0; }
@media (max-width: 560px) { .hp-phone { width: 250px; } }

/* Trust strip */
.hp-trust { padding: 22px 0; border-bottom: 1px solid var(--line); }
.hp-trust-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 34px; font-family: var(--font-mono); font-size: 12.5px; color: var(--muted); text-align: center; }
.hp-trust-row b { color: var(--green); }

/* ---------- Stake Mate PRO ---------- */
.hp-feature { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .hp-feature { grid-template-columns: 1fr; } }
.hp-feature-img { border-radius: 18px; border: 1px solid var(--line); box-shadow: 0 24px 50px rgba(0,0,0,.4); }
.hp-badge { display: inline-block; font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; background: var(--green-soft); color: var(--green); border: 1px solid var(--green); padding: 5px 12px; border-radius: 20px; margin-bottom: 14px; }
.hp-callout { background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--green); padding: 14px 18px; border-radius: 10px; font-size: 13.5px; color: var(--muted); margin: 20px 0; }
.hp-callout i { color: var(--green); }
.hp-feature-list { list-style: none; margin: 22px 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.hp-feature-list li { display: flex; gap: 10px; font-size: 14px; align-items: flex-start; }
.hp-feature-list li i { color: var(--green); margin-top: 2px; }
.hp-price { display: flex; align-items: baseline; gap: 8px; margin: 18px 0 8px; font-family: var(--font-display); }
.hp-price .amt { font-size: 32px; color: var(--green); font-weight: 700; }
.hp-price .per { color: var(--muted); font-size: 13px; font-family: var(--font-body); }
.hp-coupon { display: inline-block; font-family: var(--font-mono); font-size: 12.5px; background: var(--amber-soft); border: 1px dashed var(--amber); color: var(--amber); padding: 8px 14px; border-radius: 8px; margin-bottom: 20px; }

/* ---------- Card grids (VIP / Free) ---------- */
.hp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.hp-grid.two { grid-template-columns: repeat(2, 1fr); max-width: 780px; margin: 0 auto; }
@media (max-width: 900px) { .hp-grid { grid-template-columns: 1fr; } .hp-grid.two { grid-template-columns: 1fr; } }

.hp-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: border-color .2s ease, transform .2s ease; }
.hp-card:hover { border-color: var(--green); transform: translateY(-4px); }
.hp-card.combo { border-color: var(--amber); }
.hp-card.combo:hover { border-color: var(--amber); }
.hp-card-ribbon { position: absolute; top: 14px; right: -34px; transform: rotate(40deg); background: var(--amber); color: #241a00; font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 40px; }
.hp-card-img { aspect-ratio: 1/1; overflow: hidden; background: var(--surface-2); }
.hp-card-img img { width: 100%; height: 100%; object-fit: cover; }
.hp-card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.hp-card-body h5 { font-family: var(--font-display); font-size: 18px; }
.hp-card-body p { color: var(--muted); font-size: 13.5px; flex: 1; margin: 0; }
.hp-card-price { font-family: var(--font-mono); color: var(--green); font-weight: 700; font-size: 16px; }
.hp-card.combo .hp-card-price { color: var(--amber); }
.hp-card-price small { color: var(--muted); font-weight: 400; font-size: 11.5px; }

/* ---------- Ferramentas ---------- */
.hp-tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
@media (max-width: 860px) { .hp-tools-grid { grid-template-columns: 1fr; } }
.hp-tool-col h4 { font-family: var(--font-mono); font-size: 12px; color: var(--green); text-transform: uppercase; letter-spacing: .08em; padding-bottom: 12px; border-bottom: 1px solid var(--line); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.hp-tool-col ul { list-style: none; margin: 0; padding: 0; max-height: 250px; overflow-y: auto; }
.hp-tool-col li a { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 12px 0; font-size: 13.5px; border-bottom: 1px solid var(--line); transition: color .2s ease, padding-left .2s ease; }
.hp-tool-col li:last-child a { border-bottom: none; }
.hp-tool-col li a:hover { color: var(--green); padding-left: 5px; }
.hp-tool-col li a i { color: var(--muted); font-size: 12px; flex-shrink: 0; }

/* ---------- Sobre ---------- */
.hp-about { display: grid; grid-template-columns: .5fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .hp-about { grid-template-columns: 1fr; text-align: center; } }
.hp-about-logo { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; display: flex; align-items: center; justify-content: center; padding: 44px; }
.hp-about-logo img { width: 100%; max-width: 170px; }
.hp-about-text p { color: var(--muted); font-size: 15px; margin: 0 0 14px; }
.hp-stat-row { display: flex; gap: 34px; margin-top: 22px; }
@media (max-width: 860px) { .hp-stat-row { justify-content: center; } }
.hp-stat .num { font-family: var(--font-display); font-size: 26px; color: var(--green); }
.hp-stat .lbl { font-family: var(--font-mono); font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }

/* ---------- Footer / Contato ---------- */
.hp-footer { padding: 70px 0 30px; }
.hp-contact-box { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 48px 32px; text-align: center; margin-bottom: 36px; }
.hp-contact-box h2 { font-size: clamp(24px, 4vw, 34px); margin: 12px 0 12px; }
.hp-contact-box p { color: var(--muted); margin: 0 0 26px; }
.hp-social-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hp-social-row a { display: flex; align-items: center; gap: 8px; border: 1px solid var(--line); padding: 11px 18px; border-radius: 10px; font-size: 13px; font-weight: 600; transition: border-color .2s ease, color .2s ease; }
.hp-social-row a:hover { border-color: var(--green); color: var(--green); }
.hp-footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: 12px; padding-top: 24px; border-top: 1px solid var(--line); }
.hp-footer-bottom .disclaimer { max-width: 620px; }

@media (prefers-reduced-motion: reduce) {
  .home-page * { transition: none !important; }
}
