/* public/sitio.css — landing y páginas de texto (privacidad, términos, contacto).
   Mismos tokens y fuentes que el juego (ver public/style.css :root), pero sin nada del canvas/HUD. */
:root {
  --fc-bg: #0d0b09;
  --fc-bg-2: #161009;
  --fc-panel: rgba(22, 17, 12, 0.72);
  --fc-panel-solid: #16120d;
  --fc-border: #4a3c26;
  --fc-text: #efe4c8;
  --fc-dim: #a4977a;
  --fc-accent: #f2a93b;
  --fc-accent-2: #e8552e;
  --fc-good: #86cc5c;
  --fc-font-display: 'Bebas Neue', 'Impact', 'Arial Narrow', sans-serif;
  --fc-font-cond: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --fc-font: 'Barlow', 'Segoe UI', sans-serif;
  --fc-maxw: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--fc-bg); color: var(--fc-text); font-family: var(--fc-font);
  font-size: 17px; line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--fc-accent); }
h1, h2, h3 { font-family: var(--fc-font-display); font-weight: 400; letter-spacing: 2px; color: var(--fc-accent);
  line-height: 1.05; margin: 0 0 14px; }
h1 { font-size: clamp(38px, 7vw, 72px); }
h2 { font-size: clamp(26px, 4vw, 38px); }
h3 { font-size: clamp(20px, 3vw, 24px); color: var(--fc-text); letter-spacing: 1px; }
p { margin: 0 0 14px; color: var(--fc-text); }
.dim { color: var(--fc-dim); }

.wrap { max-width: var(--fc-maxw); margin: 0 auto; padding: 0 20px; }

/* Header */
.fc-header { position: sticky; top: 0; z-index: 20; background: rgba(13, 11, 9, 0.92);
  border-bottom: 1px solid var(--fc-border); backdrop-filter: blur(6px); }
.fc-header .wrap { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; gap: 16px; }
.fc-logo { font-family: var(--fc-font-display); font-size: 24px; letter-spacing: 3px; color: var(--fc-accent);
  text-decoration: none; white-space: nowrap; }
.fc-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.fc-nav a { font-family: var(--fc-font-cond); font-weight: 600; text-transform: uppercase; font-size: 15px;
  letter-spacing: 1px; color: var(--fc-text); text-decoration: none; }
.fc-nav a:hover { color: var(--fc-accent); }

/* Botón */
.fc-btn { display: inline-block; font-family: var(--fc-font-cond); font-weight: 700; font-size: 20px;
  letter-spacing: 1px; text-transform: uppercase; text-decoration: none; color: #1a120a;
  background: linear-gradient(180deg, var(--fc-accent), #c77f1c); border: 1px solid #f7c46f; border-radius: 4px;
  padding: 14px 30px; cursor: pointer; transition: transform 0.1s, box-shadow 0.15s; }
.fc-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(242, 169, 59, 0.35); }
.fc-btn.ghost { background: transparent; color: var(--fc-text); border-color: var(--fc-border); }
.fc-btn.ghost:hover { border-color: var(--fc-accent); color: var(--fc-accent); }

/* Hero */
.fc-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--fc-border); }
.fc-hero img { width: 100%; height: min(70vh, 620px); object-fit: cover; filter: brightness(0.55) saturate(1.05); }
.fc-hero-copy { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  gap: 14px; }
.fc-hero-copy .wrap { width: 100%; }
.fc-hero-copy p { max-width: 560px; font-size: 19px; color: var(--fc-text); text-shadow: 0 2px 8px rgba(0,0,0,0.7); }
.fc-hero-copy h1 { text-shadow: 0 2px 12px rgba(0,0,0,0.8); }
.fc-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }

/* Secciones */
.fc-section { padding: 64px 0; border-bottom: 1px solid var(--fc-border); }
.fc-section.alt { background: var(--fc-bg-2); }
.fc-section .lead { max-width: 760px; font-size: 18px; color: var(--fc-dim); }

.fc-grid { display: grid; gap: 20px; margin-top: 28px; }
.fc-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.fc-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.fc-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .fc-grid.cols-2, .fc-grid.cols-3, .fc-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .fc-grid.cols-2, .fc-grid.cols-3, .fc-grid.cols-4 { grid-template-columns: 1fr; }
  .fc-hero-copy .fc-hero-cta { flex-direction: column; }
  .fc-nav a:not(.fc-btn) { display: none; }
}

.fc-card { background: var(--fc-panel); border: 1px solid var(--fc-border); border-radius: 8px; padding: 18px;
  display: flex; flex-direction: column; gap: 8px; }
.fc-card img { border-radius: 4px; margin-bottom: 6px; aspect-ratio: 16/9; object-fit: cover; }
.fc-card h3 { margin: 0; }
.fc-card .tag { font-family: var(--fc-font-cond); font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--fc-accent-2); }

.fc-steps { counter-reset: paso; }
.fc-steps .fc-card { position: relative; padding-top: 44px; }
.fc-steps .fc-card::before { counter-increment: paso; content: counter(paso); position: absolute; top: 14px;
  left: 18px; font-family: var(--fc-font-display); font-size: 26px; color: var(--fc-accent); }

.fc-faq details { border-bottom: 1px solid var(--fc-border); padding: 16px 0; }
.fc-faq summary { cursor: pointer; font-family: var(--fc-font-cond); font-weight: 700; font-size: 19px;
  letter-spacing: 0.5px; color: var(--fc-text); list-style: none; }
.fc-faq summary::-webkit-details-marker { display: none; }
.fc-faq summary::before { content: '▸ '; color: var(--fc-accent); }
.fc-faq details[open] summary::before { content: '▾ '; }
.fc-faq p { margin-top: 10px; color: var(--fc-dim); }

.fc-news { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.fc-news-item { display: grid; grid-template-columns: 130px 1fr; gap: 18px; }
.fc-news-item time { font-family: var(--fc-font-cond); color: var(--fc-accent); font-weight: 700; }
@media (max-width: 600px) { .fc-news-item { grid-template-columns: 1fr; gap: 4px; } }

/* Footer */
.fc-footer { padding: 40px 0; }
.fc-footer .wrap { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; }
.fc-footer nav { display: flex; gap: 18px; flex-wrap: wrap; }
.fc-footer a { color: var(--fc-dim); text-decoration: none; font-size: 15px; }
.fc-footer a:hover { color: var(--fc-accent); }
.fc-footer .copy { color: var(--fc-dim); font-size: 14px; }

/* Páginas de texto */
.fc-doc { padding: 48px 0 72px; max-width: 780px; margin: 0 auto; }
.fc-doc h2 { margin-top: 36px; }
.fc-doc ul { color: var(--fc-text); padding-left: 22px; }
.fc-doc li { margin-bottom: 8px; }
