/* =========================================
   ESTILOS GLOBAIS - LORION ORIGIN
   ========================================= */
:root {
  --bg: #050608;
  --bg-soft: #0b1018;
  --card: #101722;
  --card-2: #0d121a;
  --gold: #d8a72d;
  --gold-light: #f1c75b;
  --blue: #0c3b78;
  --text: #f7f3e7;
  --muted: #b7b1a2;
  --line: rgba(216, 167, 45, .28);
  --shadow: 0 22px 70px rgba(0, 0, 0, .45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 75% 10%, rgba(216,167,45,.16), transparent 24rem),
    radial-gradient(circle at 15% 20%, rgba(12,59,120,.28), transparent 22rem),
    linear-gradient(180deg, #020304 0%, #07101b 45%, #050608 100%);
  color: var(--text);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }

/* =========================================
   CABEÇALHO (HEADER)
   ========================================= */
header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(3, 5, 8, .66);
  border-bottom: 1px solid rgba(216,167,45,.16);
}

.nav { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 58px; height: 58px; object-fit: contain; filter: drop-shadow(0 0 18px rgba(216,167,45,.28)); }
.brand strong { display:block; font-family: Georgia, 'Times New Roman', serif; letter-spacing: .12em; color: var(--gold-light); font-size: 1.35rem; }
.brand span { display:block; color: var(--muted); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; margin-top: 2px; }

.menu { display: flex; gap: 26px; align-items: center; font-weight: 700; font-size: .86rem; letter-spacing: .04em; text-transform: uppercase; }
.menu a { color: #efe9d7; opacity: .9; position: relative; }
.menu a::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px; background: var(--gold); transition: .25s; }
.menu a:hover::after { width: 100%; }

.mobile-toggle { display: none; border: 1px solid var(--line); background: rgba(216,167,45,.08); color: var(--gold-light); padding: 10px 12px; border-radius: 12px; }

/* =========================================
   BOTÕES GLOBAIS
   ========================================= */
.btn { display: inline-flex; align-items: center; justify-content:center; gap: 10px; min-height: 52px; padding: 0 24px; border-radius: 14px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; font-size: .84rem; transition: .25s ease; cursor: pointer; }
.btn.primary { background: linear-gradient(135deg, #f2c35b, #bf7f17); color: #140d02; box-shadow: 0 18px 38px rgba(216,167,45,.22); }
.btn.secondary { border: 1px solid var(--line); color: var(--gold-light); background: rgba(255,255,255,.02); }
.btn:hover { transform: translateY(-3px); }

/* =========================================
   PÁGINA PRINCIPAL (INDEX)
   ========================================= */
.hero { min-height: 100vh; display: grid; align-items: center; padding: 118px 0 64px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 50px; align-items: center; }
.eyebrow { color: var(--gold-light); text-transform: uppercase; letter-spacing: .22em; font-size: .78rem; font-weight: 800; margin-bottom: 18px; }

h1 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(3.1rem, 8vw, 6.5rem); line-height: .92; letter-spacing: .04em; text-transform: uppercase; }
h1 span { color: var(--gold-light); display: block; }

.hero p { color: #ddd5c4; font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.8; margin: 28px 0 34px; max-width: 620px; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-card { position: relative; display: grid; place-items: center; }
.hero-logo { width: min(520px, 92vw); aspect-ratio: 1; object-fit: contain; filter: drop-shadow(0 35px 65px rgba(0,0,0,.55)); animation: float 4.5s ease-in-out infinite; }
.orb { position:absolute; width: 430px; height: 430px; border-radius:50%; background: radial-gradient(circle, rgba(216,167,45,.18), transparent 65%); filter: blur(12px); z-index:-1; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

section { padding: 92px 0; border-top: 1px solid rgba(216,167,45,.10); }
.section-head { text-align: center; margin-bottom: 46px; }
.section-head h2 { font-family: Georgia, 'Times New Roman', serif; color: var(--gold-light); font-size: clamp(2rem, 4vw, 3.6rem); text-transform: uppercase; letter-spacing: .06em; }
.section-head p { color: var(--muted); max-width: 720px; margin: 16px auto 0; line-height: 1.8; font-size: 1.05rem; }

.about { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: stretch; }
.panel { background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)); border: 1px solid rgba(216,167,45,.16); border-radius: 28px; padding: 34px; box-shadow: var(--shadow); }
.panel h3 { color: var(--gold-light); font-size: 1.5rem; margin-bottom: 14px; }
.panel p { color: #d7cfbf; line-height: 1.85; }

.about-visual { display: grid; place-items: center; min-height: 360px; }
.about-visual img { width: min(360px, 100%); object-fit: contain; }

.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value { background: rgba(16,23,34,.78); border: 1px solid rgba(216,167,45,.14); border-radius: 22px; padding: 26px; transition: .25s; }
.value:hover { transform: translateY(-6px); border-color: rgba(216,167,45,.42); }
.icon { font-size: 2rem; margin-bottom: 18px; }
.value h3 { color: var(--gold-light); margin-bottom: 10px; }
.value p { color: var(--muted); line-height: 1.65; }

.games-empty { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.game-card { min-height: 300px; border: 1px dashed rgba(216,167,45,.32); border-radius: 26px; background: linear-gradient(180deg, rgba(13,18,26,.9), rgba(5,6,8,.85)); display: grid; place-items: center; text-align:center; padding: 28px; }
.game-card span { display:block; font-size: 2.8rem; margin-bottom: 14px; }
.game-card h3 { margin-top: 0.5em; font-family: Georgia, 'Times New Roman', serif; color: var(--gold-light); font-size: 1rem; margin-bottom: 6px; text-transform: uppercase; }
.game-card p { color: var(--muted); margin-top: 10px; }

.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.social { padding: 24px; border-radius: 22px; background: rgba(16,23,34,.82); border: 1px solid rgba(216,167,45,.16); display:flex; align-items:center; justify-content:space-between; gap: 16px; transition:.25s; }
.social:hover { transform: translateY(-4px); border-color: rgba(216,167,45,.45); background: rgba(216,167,45,.08); }
.social strong { color: var(--text); }
.social small { display:block; color: var(--muted); margin-top: 4px; }
.social b { color: var(--gold-light); font-size: 1.4rem; }

.contact-box { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mail { background: rgba(16,23,34,.82); border: 1px solid rgba(216,167,45,.18); border-radius: 24px; padding: 28px; }
.mail span { color: var(--muted); display:block; margin-bottom: 10px; }
.mail a { color: var(--gold-light); font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 900; word-break: break-word; }

.reveal { opacity: 0; transform: translateY(22px); transition: .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================
   PÁGINA DO JOGO (PROTOCOLO ANTIVÍRUS)
   ========================================= */
.game-section { padding: 140px 0 60px; border-top: none; }
.game-panel { 
    background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)); 
    border: 1px solid rgba(216,167,45,.16); 
    border-radius: 28px; 
    padding: 40px; 
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}
.back-link { display: inline-block; color: var(--gold); margin-bottom: 20px; font-weight: bold; font-size: 0.9rem;}
.back-link:hover { color: var(--gold-light); }

.game-panel h2 { font-family: Georgia, 'Times New Roman', serif; color: var(--gold-light); font-size: 2.2rem; margin-bottom: 10px; text-transform: uppercase;}

.status-badge { display: inline-block; background: rgba(216,167,45,.15); color: var(--gold-light); padding: 6px 14px; border-radius: 6px; border: 1px solid rgba(216,167,45,.4); font-size: 0.85rem; font-weight: bold; text-transform: uppercase; letter-spacing: 0.05em; }

.game-panel img { width: 100%; border-radius: 14px; border: 1px solid rgba(216,167,45,.3); margin-bottom: 25px; }
.game-panel h3 { color: var(--gold-light); font-size: 1.3rem; margin-top: 25px; margin-bottom: 15px; }
.game-panel p, .game-panel ul { color: #d7cfbf; line-height: 1.85; margin-bottom: 15px; }
.game-panel ul { padding-left: 20px; list-style-type: square; }
.game-panel ul span { color: #d7cfbf; }

.terminal-box { background: rgba(5,6,8,.85); border-left: 3px solid var(--gold); padding: 15px; font-family: monospace; color: var(--gold-light); margin-top: 25px; border-radius: 4px; }
.btn-container { text-align: center; margin-top: 40px; }

/* =========================================
   RODAPÉ (FOOTER)
   ========================================= */
footer { padding: 44px 0; background: #030405; border-top: 1px solid rgba(216,167,45,.16); margin-top: 60px;}
.footer-inner { display:flex; justify-content:space-between; align-items:center; gap: 22px; color: var(--muted); }
.footer-brand { display:flex; align-items:center; gap: 12px; }
.footer-brand img { width: 50px; height: 50px; object-fit: contain; }
.footer-brand strong { color: var(--gold-light); display:block; }

/* =========================================
   RESPONSIVIDADE (MOBILE)
   ========================================= */
@media (max-width: 900px) {
  .menu { display:none; position:absolute; top: 78px; left: 16px; right:16px; padding: 22px; border:1px solid var(--line); border-radius: 20px; background: rgba(3,5,8,.96); flex-direction:column; align-items:flex-start; }
  .menu.open { display:flex; }
  .mobile-toggle { display:block; }
  .hero-grid, .about, .contact-box { grid-template-columns: 1fr; }
  .hero { text-align:center; }
  .hero p { margin-left:auto; margin-right:auto; }
  .actions { justify-content:center; }
  .values, .social-grid, .games-empty { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align:center; }
  .game-panel { padding: 25px; }
}

.margin-top-1em {
    margin-top: 1em;
}