/* ─── RESET & VARIABLES ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #05050f;
  --bg2: #0b0b1e;
  --card: #0f0f25;
  --card2: #141430;
  --border: rgba(120, 80, 255, 0.2);
  --neon1: #7c3aed;
  --neon2: #06b6d4;
  --neon3: #f059da;
  --neon4: #22d3ee;
  --gold: #f59e0b;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --radius: 14px;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* ─── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--neon1); border-radius: 99px; }

/* ─── CANVAS BACKGROUND ──────────────────────────────────────── */
#bgCanvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: 0.4;
}

/* ─── NAV ────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  background: rgba(5, 5, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--neon2), var(--neon1), var(--neon3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-logo span { color: var(--neon3); -webkit-text-fill-color: var(--neon3); }
.nav-links { display: flex; gap: 6px; }
.nav-links a {
  padding: 7px 16px;
  border-radius: 99px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  transition: all .25s;
  border: 1px solid transparent;
}
.nav-links a:hover, .nav-links a.active {
  color: #fff;
  background: rgba(124,58,237,.18);
  border-color: var(--border);
}
.nav-badge {
  background: linear-gradient(135deg, var(--neon1), var(--neon3));
  color: #fff;
  padding: 7px 18px;
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .5px;
  box-shadow: 0 0 20px rgba(124,58,237,.5);
  transition: box-shadow .25s;
}
.nav-clock {
  color: #a855f7;
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 9px 14px;
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 99px;
  background: rgba(168, 85, 247, 0.08);
}
.nav-badge:hover { box-shadow: 0 0 32px rgba(124,58,237,.8); }
.nav-mobile { display: none; font-size: 1.5rem; cursor: pointer; }

/* ─── HERO ───────────────────────────────────────────────────── */
#hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  overflow: hidden;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(6,182,212,.1);
  border: 1px solid rgba(6,182,212,.3);
  padding: 6px 18px; border-radius: 99px;
  font-size: .78rem; font-weight: 600;
  color: var(--neon2); letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 28px;
  animation: fadeDown .6s ease both;
}
.hero-tag::before {
  content: ''; width: 8px; height: 8px;
  background: var(--neon2); border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.5); }
}
.hero-title {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 1;
  letter-spacing: -2px;
  animation: fadeDown .7s .1s ease both;
}
.hero-title .v {
  background: linear-gradient(135deg, var(--neon2) 0%, var(--neon1) 50%, var(--neon3) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(124,58,237,.6));
}
.hero-title .lines { color: #fff; }
.hero-sub {
  margin-top: 20px;
  font-size: clamp(.95rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 540px;
  line-height: 1.7;
  animation: fadeDown .7s .2s ease both;
}
.hero-actions {
  margin-top: 36px;
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  animation: fadeDown .7s .3s ease both;
}
.btn-primary {
  background: linear-gradient(135deg, var(--neon1), var(--neon3));
  color: #fff; padding: 14px 32px; border-radius: 99px;
  font-weight: 700; font-size: .95rem; letter-spacing: .5px;
  box-shadow: 0 0 28px rgba(124,58,237,.5);
  transition: all .25s; border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 48px rgba(124,58,237,.8); }
.btn-ghost {
  background: transparent;
  color: var(--text); padding: 13px 32px; border-radius: 99px;
  font-weight: 600; font-size: .95rem;
  border: 1px solid var(--border);
  transition: all .25s; cursor: pointer;
}
.btn-ghost:hover { background: rgba(124,58,237,.12); border-color: var(--neon1); }

.hero-stats {
  margin-top: 56px;
  display: flex; gap: 40px; flex-wrap: wrap; justify-content: center;
  animation: fadeDown .7s .4s ease both;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Orbitron', monospace;
  font-size: 2rem; font-weight: 900;
  background: linear-gradient(135deg, var(--neon2), var(--neon1));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: .8rem; color: var(--muted); margin-top: 4px; letter-spacing: .5px; }

/* ─── SECTION HEADER ─────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block;
  font-size: .75rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 99px;
  margin-bottom: 14px;
}
.tag-cyan { background: rgba(6,182,212,.12); color: var(--neon2); border: 1px solid rgba(6,182,212,.25); }
.tag-purple { background: rgba(124,58,237,.12); color: #a78bfa; border: 1px solid rgba(124,58,237,.25); }
.tag-pink { background: rgba(240,89,218,.12); color: var(--neon3); border: 1px solid rgba(240,89,218,.25); }
.tag-gold { background: rgba(245,158,11,.1); color: var(--gold); border: 1px solid rgba(245,158,11,.25); }

.section-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #fff;
}
.section-desc {
  margin-top: 10px;
  color: var(--muted);
  font-size: .95rem;
  max-width: 500px;
  margin-left: auto; margin-right: auto;
}

/* ─── SECTION WRAPPER ────────────────────────────────────────── */
section {
  position: relative; z-index: 1;
  padding: 90px 24px;
}
section:nth-child(even) { background: rgba(11,11,30,.6); }
.container { max-width: 1200px; margin: 0 auto; }

/* ─── GLOW DIVIDER ───────────────────────────────────────────── */
.glow-line {
  width: 80px; height: 3px;
  border-radius: 99px;
  margin: 18px auto 0;
}
.glow-cyan { background: linear-gradient(90deg, transparent, var(--neon2), transparent); }
.glow-purple { background: linear-gradient(90deg, transparent, var(--neon1), transparent); }
.glow-pink { background: linear-gradient(90deg, transparent, var(--neon3), transparent); }
.glow-gold { background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ─── NEWS GRID ──────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.news-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s;
  cursor: pointer;
  position: relative;
}
.news-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon1), var(--neon2));
  opacity: 0; transition: opacity .3s;
}
.news-card:hover { transform: translateY(-5px); border-color: rgba(124,58,237,.4); box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.news-card:hover::before { opacity: 1; }
.news-card.hidden { display: none; }
.news-thumb {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, #1a1a3e, #0f0f2e);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  position: relative; overflow: hidden;
}
.news-thumb .thumb-gradient {
  position: absolute; inset: 0;
  opacity: .6;
}
.news-thumb .thumb-icon { position: relative; z-index: 1; }
.news-body { padding: 18px; }
.news-meta {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 10px;
}
.news-cat {
  font-size: .7rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 3px 10px;
  border-radius: 99px;
}
.cat-tech    { background: rgba(6,182,212,.15); color: var(--neon2); }
.cat-game    { background: rgba(124,58,237,.15); color: #a78bfa; }
.cat-shop    { background: rgba(240,89,218,.15); color: var(--neon3); }
.cat-app     { background: rgba(34,211,238,.15); color: var(--neon4); }
.cat-futebol { background: rgba(34,197,94,.15); color: #4ade80; }
.cat-politica{ background: rgba(239,68,68,.15); color: #f87171; }
.cat-mercado { background: rgba(245,158,11,.15); color: #fbbf24; }
.cat-mkt     { background: rgba(168,85,247,.15); color: #c084fc; }
.news-date { font-size: .72rem; color: var(--muted); }
.news-title {
  font-size: 1rem; font-weight: 600;
  color: #fff; line-height: 1.4;
  margin-bottom: 8px;
}
.news-excerpt { font-size: .83rem; color: var(--muted); line-height: 1.6; }
.news-read {
  margin-top: 14px;
  font-size: .8rem; font-weight: 600;
  color: var(--neon2);
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap .2s;
}
.news-card:hover .news-read { gap: 10px; }

/* ─── NEWS FILTERS ──────────────────────────────────────────── */
.news-filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 36px;
}
.filter-btn {
  padding: 8px 20px; border-radius: 99px;
  font-size: .82rem; font-weight: 600;
  background: var(--card); color: var(--muted);
  border: 1px solid var(--border);
  cursor: pointer; transition: all .22s;
}
.filter-btn:hover { color: #fff; border-color: rgba(124,58,237,.5); }
.filter-btn.active {
  background: linear-gradient(135deg, var(--neon1), var(--neon2));
  color: #fff; border-color: transparent;
  box-shadow: 0 0 16px rgba(124,58,237,.4);
}

/* ─── APPS GRID ──────────────────────────────────────────────── */
.apps-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
.app-card {
  width: 220px;
  flex-shrink: 0;
}
.app-card {
  display: flex; flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: all .3s;
  cursor: pointer;
  position: relative; overflow: hidden;
}
.app-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(124,58,237,.15), transparent 70%);
  opacity: 0; transition: opacity .3s;
}
.app-card:hover { transform: translateY(-6px); border-color: var(--neon1); box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.app-card:hover::after { opacity: 1; }
.app-icon {
  width: 100%; height: 160px; border-radius: 16px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; overflow: hidden;
  position: relative; z-index: 1;
  background: #111;
}
.app-name { font-size: .92rem; font-weight: 800; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .04em; color: #fff; text-shadow: 0 0 6px rgba(255,255,255,.4); position: relative; z-index: 1; }
.app-desc {
  font-size: .8rem; color: var(--muted);
  line-height: 1.5; margin-bottom: 16px;
  position: relative; z-index: 1;
}
.app-badges {
  display: flex; gap: 6px; justify-content: center; flex-wrap: nowrap;
  margin-top: auto;
  margin-bottom: 16px; position: relative; z-index: 1;
}
.badge {
  font-size: .62rem; padding: 2px 7px;
  border-radius: 99px; font-weight: 600; white-space: nowrap;
}
.badge-free { background: rgba(34,211,238,.15); color: var(--neon4); border: 1px solid rgba(34,211,238,.2); }
.badge-android { background: rgba(34,211,238,.15); color: var(--neon4); border: 1px solid rgba(34,211,238,.2); }
.badge-ios { background: rgba(34,211,238,.15); color: var(--neon4); border: 1px solid rgba(34,211,238,.2); }
.badge-paid { background: rgba(245,158,11,.12); color: var(--gold); border: 1px solid rgba(245,158,11,.2); }
.badge-new  { background: rgba(240,89,218,.15); color: var(--neon3); border: 1px solid rgba(240,89,218,.2); }
.badge-ios { background: rgba(34,211,238,.15); color: var(--neon4); border: 1px solid rgba(34,211,238,.2); }
.badge-and  { background: rgba(106,236,106,.1); color: #86efac; border: 1px solid rgba(106,236,106,.2); }
.btn-app {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; border-radius: 10px; font-size: .82rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  color: #fff !important; text-shadow: 0 0 8px rgba(255,255,255,.6);
  cursor: pointer; transition: all .25s; position: relative; z-index: 1;
  text-decoration: none;
}
.btn-app:hover { background: linear-gradient(135deg, var(--neon1), var(--neon2)); border-color: transparent; }
.btn-app.btn-secondary { background: linear-gradient(135deg, #f59e0b, #ef4444); border-color: transparent; color: #fff; }
.btn-app.btn-secondary:hover { background: linear-gradient(135deg, #d97706, #dc2626); }


/* ─── STORE GRID ──────────────────────────────────────────────── */
.store-platforms {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 40px;
}
.platform-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 24px; border-radius: 99px;
  font-weight: 700; font-size: .9rem;
  border: 1px solid; cursor: pointer;
  transition: all .25s;
}
.platform-shopee {
  background: rgba(238,77,45,.1);
  border-color: rgba(238,77,45,.3);
  color: #fb923c;
}
.platform-shopee:hover { background: rgba(238,77,45,.2); box-shadow: 0 0 20px rgba(238,77,45,.3); }
.platform-ml {
  background: rgba(255,230,0,.07);
  border-color: rgba(255,230,0,.2);
  color: #fde047;
}
.platform-ml:hover { background: rgba(255,230,0,.12); box-shadow: 0 0 20px rgba(255,230,0,.2); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s; cursor: pointer;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.4); border-color: rgba(240,89,218,.3); }
.product-img {
  width: 100%; height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.product-info { padding: 16px; }
.product-platform {
  font-size: .68rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 6px;
}
.p-shopee { color: #fb923c; }
.p-ml     { color: #fde047; }
.product-name { font-size: .95rem; font-weight: 600; color: #fff; margin-bottom: 6px; }
.product-price {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem; font-weight: 900;
  color: var(--neon3);
}
.product-old {
  font-size: .78rem; color: var(--muted);
  text-decoration: line-through; margin-left: 8px;
}
.product-discount {
  display: inline-block;
  background: rgba(240,89,218,.2); color: var(--neon3);
  font-size: .7rem; font-weight: 700;
  padding: 2px 8px; border-radius: 99px;
  margin-left: 8px;
}
.btn-buy {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 12px; padding: 9px;
  border-radius: 8px; font-size: .82rem; font-weight: 700;
  transition: all .25s; border: none; cursor: pointer; width: 100%;
}
.btn-buy-shopee { background: linear-gradient(135deg, #ee4d2d, #ff7337); color: #fff; }
.btn-buy-ml { background: linear-gradient(135deg, #ffe600, #ffa500); color: #111; }
.btn-buy:hover { transform: scale(1.02); }

/* ─── GAMES GRID ─────────────────────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.game-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  transition: all .3s; position: relative;
}
.game-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.game-banner {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative; overflow: hidden;
}
.game-banner .banner-glow {
  position: absolute; inset: 0;
  opacity: .8;
}
.game-banner .game-icon { position: relative; z-index: 1; }
.game-live {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: #ef4444; color: #fff;
  font-size: .65rem; font-weight: 800;
  padding: 4px 10px; border-radius: 99px;
  letter-spacing: 1px; text-transform: uppercase;
  animation: blink 1.5s ease-in-out infinite;
  display: flex; align-items: center; gap: 5px;
}
.game-live::before {
  content: ''; width: 6px; height: 6px;
  background: #fff; border-radius: 50%;
}
@keyframes blink {
  0%,100% { opacity: 1; } 50% { opacity: .6; }
}
.game-body { padding: 18px; }
.game-title {
  font-family: 'Orbitron', monospace;
  font-size: 1rem; font-weight: 700;
  color: #fff; margin-bottom: 6px;
}
.game-desc { font-size: .82rem; color: var(--muted); line-height: 1.5; margin-bottom: 14px; }
.game-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.game-players { font-size: .75rem; color: var(--neon2); font-weight: 600; }
.game-rating { font-size: .75rem; color: var(--gold); font-weight: 600; }
.btn-play {
  display: block; width: 100%;
  padding: 11px; border-radius: 8px;
  font-size: .88rem; font-weight: 800;
  letter-spacing: .5px; text-align: center;
  border: none; cursor: pointer;
  transition: all .25s;
}
.btn-play:hover { transform: scale(1.02); filter: brightness(1.1); }

/* ─── NEWSLETTER ─────────────────────────────────────────────── */
#newsletter {
  background: linear-gradient(135deg, rgba(124,58,237,.15), rgba(6,182,212,.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.newsletter-box {
  text-align: center; max-width: 560px; margin: 0 auto;
}
.newsletter-box h2 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700; color: #fff;
  margin-bottom: 10px;
}
.newsletter-box p { color: var(--muted); margin-bottom: 28px; }
.nl-form {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.nl-input {
  flex: 1; min-width: 220px;
  padding: 12px 20px; border-radius: 99px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  color: #fff; font-size: .9rem;
  outline: none; transition: border-color .25s;
}
.nl-input:focus { border-color: var(--neon1); }
.nl-input::placeholder { color: var(--muted); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  position: relative; z-index: 1;
  background: rgba(5,5,15,.95);
  border-top: 1px solid var(--border);
  padding: 48px 24px 28px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
}
.footer-brand .nav-logo { font-size: 1.6rem; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: .85rem; color: var(--muted); line-height: 1.7; }
.footer-col h4 {
  font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--muted); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .85rem; color: var(--muted);
  transition: color .2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px; margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: .8rem; color: var(--muted); }
.social-icons { display: flex; gap: 12px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--card2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all .25s; cursor: pointer;
}
.social-icon:hover { border-color: var(--neon1); background: rgba(124,58,237,.2); transform: translateY(-2px); }

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
    opacity: 1;
    transform: translateY(0);
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */

/* ── NEWS SECTIONS ── */
.news-sections { display: flex; flex-direction: column; gap: 40px; }
.news-section-block {}
.news-section-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 14px; color: var(--neon2); border-left: 3px solid var(--accent); padding-left: 10px; letter-spacing: .02em; }
.news-row-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(5,5,15,.97);
    padding: 20px; gap: 4px;
    border-bottom: 1px solid var(--border);
  }
  .nav-mobile { display: block; }
  .nav-badge { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  /* Apps: 2 colunas no mobile */
  .apps-grid { gap: 12px !important; padding: 0 8px; }
  .app-card { width: calc(50% - 6px) !important; min-width: 0 !important; flex-shrink: 1 !important; }
  .app-icon { height: 120px !important; width: 100% !important; }
  .app-icon img { height: 120px !important; }
  .app-name { font-size: .78rem !important; }
  .app-desc { font-size: .72rem !important; }
  /* News: 2 colunas no mobile, todas as noticias */
  .news-grid { grid-template-columns: 1fr 1fr !important; gap: 8px; }
     .news-row-4 { grid-template-columns: 1fr 1fr !important; gap: 8px; }
  .news-thumb { height: 70px !important; font-size: 1.2rem !important; }
  .news-card:nth-child(n+5) { display: block !important; }
  .news-body { padding: 10px !important; }
  .news-title { font-size: .78rem !important; margin-bottom: 4px !important; }
  .news-excerpt { font-size: .7rem !important; display: -webkit-box !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; overflow: hidden !important; }
  .news-meta { font-size: .65rem !important; }
  .news-source { font-size: .65rem !important; }
  .read-more { font-size: .7rem !important; }
  /* Hero menor */
  .hero { padding: 70px 16px 30px !important; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .app-card { width: calc(50% - 6px) !important; }
  .app-icon { height: 100px !important; }
}


/* ── Agro category badge ── */
.cat-agro { background: rgba(54,83,20,.25); color: #a3e635; }
.cat-financeiro { background: rgba(124,58,237,.15); color: #a78bfa; }
.cat-marketing  { background: rgba(225,29,72,.15);  color: #fb7185; }

/* ── EM BREVE sections ── */
.em-breve-box { display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; background:linear-gradient(135deg,rgba(124,58,237,.08),rgba(6,182,212,.06)); border:1px dashed rgba(124,58,237,.35); border-radius:24px; padding:64px 32px; margin:0 auto; max-width:600px; gap:16px; }
.em-breve-icon { font-size:4rem; filter:drop-shadow(0 0 20px rgba(124,58,237,.6)); animation:pulse 2s ease-in-out infinite; }
.em-breve-titulo { font-family:'Orbitron',monospace; font-size:2.5rem; font-weight:900; background:linear-gradient(135deg,var(--neon2),var(--neon1),var(--neon3)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; letter-spacing:4px; }
.em-breve-desc { color:var(--muted); font-size:.95rem; line-height:1.7; max-width:440px; }
.em-breve-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(124,58,237,.15); border:1px solid rgba(124,58,237,.3); color:#a78bfa; font-size:.8rem; font-weight:600; letter-spacing:1px; text-transform:uppercase; padding:8px 20px; border-radius:99px; margin-top:8px; }


/* App icon image full width */
.app-icon:has(img) {
  width: 100% !important;
  height: 160px !important;
  border-radius: 16px !important;
  padding: 0 !important;
  overflow: hidden !important;
  margin-bottom: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #1a0d00 !important;
}
.app-icon img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  border-radius: 16px !important;
  object-fit: cover !important;
  object-position: center top !important;
}