/* Campo Rápido — chuteira.info | editorial-red-accent | tabloid-quick */
:root {
  --red: #d62828;
  --red-dark: #9b1c1c;
  --red-light: #ff4d4d;
  --ink: #111111;
  --ink-soft: #333333;
  --muted: #666666;
  --line: #e8e8e8;
  --bg: #fafafa;
  --white: #ffffff;
  --tag-chuteiras: #d62828;
  --tag-mercado: #e85d04;
  --tag-dicas: #2a9d8f;
  --tag-equip: #4361ee;
  --container: 720px;
  --radius-pill: 999px;
  --radius-card: 18px;
  --space-xs: 0.35rem;
  --space-sm: 0.6rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Arial Black", "Helvetica Neue", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 15px; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: var(--red); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--red-dark); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ── Compact topbar header ── */
.site-header {
  background: var(--ink);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--red);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  max-width: var(--container);
  margin: 0 auto;
  gap: var(--space-md);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
}

.logo span { color: var(--red-light); }

.topbar-meta {
  font-size: 0.7rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md) var(--space-sm);
  max-width: var(--container);
  margin: 0 auto;
  overflow-x: auto;
}

.nav-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  background: rgba(255,255,255,0.12);
  white-space: nowrap;
  transition: background 0.15s;
}

.nav-tag:hover, .nav-tag.active {
  background: var(--red);
  color: var(--white);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.btn-accent {
  background: var(--red);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--red-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

/* ── Tags ── */
.tag {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
}

.tag-chuteiras { background: var(--tag-chuteiras); }
.tag-mercado { background: var(--tag-mercado); }
.tag-dicas { background: var(--tag-dicas); }
.tag-equip { background: var(--tag-equip); }

/* ── Hero stacked headlines (no image) ── */
.hero-stack {
  padding: var(--space-lg) 0 var(--space-md);
}

.hero-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: var(--space-xs);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-sm);
}

.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: var(--space-md);
}

.hero-date {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Bento grid ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-sm);
  padding-bottom: var(--space-xl);
}

.bento-item {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 160px;
}

.bento-item.span-4 { grid-column: span 4; }
.bento-item.span-3 { grid-column: span 3; }
.bento-item.span-2 { grid-column: span 2; }
.bento-item.span-6 { grid-column: span 6; }

.card-overlay {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: inherit;
  padding: var(--space-md);
  color: var(--white);
  background: var(--ink);
}

.card-overlay .card-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}

.card-overlay .card-content {
  position: relative;
  z-index: 1;
}

.card-overlay h2, .card-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.15;
  margin: var(--space-xs) 0;
}

.card-overlay h2 { font-size: 1.3rem; }

.card-overlay p {
  font-size: 0.78rem;
  opacity: 0.85;
  line-height: 1.35;
}

.card-overlay a { color: var(--white); }
.card-overlay a:hover { color: var(--red-light); }

/* ── Compact dense article list ── */
.article-list {
  list-style: none;
  border-top: 2px solid var(--ink);
}

.article-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.article-list .thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--line);
}

.article-list h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.article-list h3 a { color: var(--ink); }
.article-list h3 a:hover { color: var(--red); }

.article-list .meta {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ── Page sections ── */
.page-header {
  padding: var(--space-lg) 0 var(--space-md);
  border-bottom: 2px solid var(--ink);
  margin-bottom: var(--space-lg);
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page-header p {
  margin-top: var(--space-sm);
  color: var(--muted);
  font-size: 0.92rem;
}

.prose {
  padding-bottom: var(--space-xl);
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--ink);
}

.prose h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: var(--space-md) 0 var(--space-xs);
}

.prose p {
  margin-bottom: var(--space-md);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.prose ul, .prose ol {
  margin: 0 0 var(--space-md) 1.2rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.prose li { margin-bottom: var(--space-xs); }

.prose a { text-decoration: underline; text-underline-offset: 2px; }

/* ── Image-heavy article layout ── */
.article-hero-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-card);
  margin-bottom: var(--space-md);
  background: var(--line);
}

.article-meta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--muted);
}

.author-card {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  margin: var(--space-lg) 0;
}

.author-card img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--line);
}

.author-card .author-name {
  font-weight: 700;
  font-size: 0.88rem;
}

.author-card .author-role {
  font-size: 0.75rem;
  color: var(--muted);
}

.article-inline-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-card);
  margin: var(--space-md) 0;
}

/* ── Contact form ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 480px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 2px solid var(--line);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.88rem;
  background: var(--white);
  transition: border-color 0.15s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
}

.form-group textarea { min-height: 120px; resize: vertical; }

/* ── Minimal single footer ── */
.site-footer {
  background: var(--ink);
  color: #999;
  padding: var(--space-md);
  text-align: center;
  font-size: 0.72rem;
  margin-top: var(--space-xl);
}

.site-footer a {
  color: #ccc;
  margin: 0 0.4rem;
}

.site-footer a:hover { color: var(--red-light); }

.footer-links {
  margin-bottom: var(--space-xs);
}

/* ── Cookie corner popup ── */
.cookie-popup {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  max-width: 320px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius-card);
  padding: var(--space-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  z-index: 1000;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-popup.visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-popup h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: var(--space-xs);
}

.cookie-popup p {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.cookie-actions {
  display: flex;
  gap: var(--space-xs);
}

.cookie-actions .btn {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  padding: 0.45rem 0.8rem;
}

/* ── Utility ── */
.section-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-md) 0 var(--space-sm);
  border-top: 2px solid var(--ink);
}

.text-center { text-align: center; }

@media (max-width: 600px) {
  .bento-item.span-4,
  .bento-item.span-3,
  .bento-item.span-2 { grid-column: span 6; }

  .topbar { flex-direction: column; align-items: flex-start; gap: var(--space-xs); }

  .hero-headline { font-size: 1.6rem; }
}
