/* ============================================================
   VETERANS VOLEI MASTER - CSS PRINCIPAL
   Sistema visual completo
============================================================ */

/* ============================================================
   RESET E BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ============================================================
   VARIAVEIS CSS - PALETA E TOKENS
============================================================ */
:root {
  /* Cores principais */
  --navy-deep: #0a1a3e;
  --navy: #1a3a8e;
  --navy-light: #2848a8;
  --gold: #f4c842;
  --gold-dark: #c99c12;
  --gold-light: #ffd54f;
  --green: #6cb979;
  --green-dark: #4a9258;

  /* Neutros */
  --white: #ffffff;
  --bg-base: #f5f7fb;
  --bg-card: #ffffff;
  --border: #e8ecf3;
  --text-primary: #0a1a3e;
  --text-secondary: #5a6680;
  --text-muted: #8893a8;

  /* Estados */
  --success: #6cb979;
  --error: #e63946;
  --warning: #f4c842;
  --info: #2848a8;

  /* Tipografia */
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Espacos */
  --container: 1280px;
  --gap-xs: 8px;
  --gap-sm: 14px;
  --gap-md: 24px;
  --gap-lg: 40px;
  --gap-xl: 80px;

  /* Raios */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(10, 26, 62, 0.06);
  --shadow: 0 8px 24px rgba(10, 26, 62, 0.1);
  --shadow-lg: 0 20px 50px rgba(10, 26, 62, 0.15);
  --shadow-gold: 0 12px 28px rgba(244, 200, 66, 0.35);

  /* Transicoes */
  --t-fast: 0.2s ease;
  --t: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Header */
  --header-h: 84px;
  --header-h-sm: 64px;
}

/* ============================================================
   UTILITARIOS
============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--gap-xl) 0;
  position: relative;
}

.section-sm { padding: var(--gap-lg) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.eyebrow-light { color: var(--gold); }
.eyebrow-light::before { background: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 1px;
  color: var(--navy-deep);
}

h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 64px); }
h3 { font-size: clamp(24px, 3vw, 36px); }
h4 { font-size: clamp(20px, 2.5vw, 28px); }

.text-light h1, .text-light h2, .text-light h3, .text-light h4 { color: var(--white); }

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 640px;
}

.text-light .lead { color: rgba(255, 255, 255, 0.85); }

.accent { color: var(--gold); }
.accent-green { color: var(--green); }

.section-title-wrap {
  text-align: center;
  margin-bottom: var(--gap-lg);
}
.section-title-wrap .eyebrow {
  justify-content: center;
}
.section-title-wrap .eyebrow::before,
.section-title-wrap .eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

/* ============================================================
   BOTOES
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--t);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn svg { width: 16px; height: 16px; }

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--navy-deep);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--navy-deep);
  border-color: var(--navy-deep);
}
.btn-ghost-dark:hover {
  background: var(--navy-deep);
  color: var(--white);
}

.btn-solid {
  background: var(--navy-deep);
  color: var(--white);
}
.btn-solid:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-green {
  background: var(--green);
  color: var(--navy-deep);
}
.btn-green:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn-sm { padding: 10px 20px; font-size: 11px; }
.btn-lg { padding: 20px 44px; font-size: 14px; }
.btn-block { display: flex; width: 100%; }

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 26, 62, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--t);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header.scrolled {
  background: rgba(10, 26, 62, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-md);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-logo img { height: 52px; width: auto; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--t-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.header-cta { flex-shrink: 0; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  align-items: center;
  justify-content: center;
}

.menu-toggle svg { width: 22px; height: 22px; }

@media (max-width: 1024px) {
  .header-nav, .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-inner { height: var(--header-h-sm); }
}

/* Menu mobile */
.mobile-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: 88%; max-width: 380px;
  height: 100vh;
  background: var(--navy-deep);
  z-index: 2000;
  transition: right var(--t);
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}
.mobile-drawer.open { right: 0; }

.mobile-drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 18px;
}
.mobile-drawer-head img { height: 44px; }
.mobile-drawer-close {
  width: 40px; height: 40px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.mobile-nav-link {
  display: block;
  padding: 14px 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color var(--t-fast);
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--gold); }

.mobile-cta-wrap { margin-top: auto; padding-top: 24px; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10, 26, 62, 0.85) 0%,
    rgba(10, 26, 62, 0.6) 50%,
    rgba(10, 26, 62, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 60px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(244, 200, 66, 0.15);
  border: 1px solid rgba(244, 200, 66, 0.4);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 11vw, 160px);
  line-height: 0.85;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.9s forwards;
}
.hero-title span:nth-child(1) { animation-delay: 0.3s; }
.hero-title span:nth-child(2) { animation-delay: 0.5s; color: var(--gold); }
.hero-title span:nth-child(3) { animation-delay: 0.7s; }

.hero-sub {
  font-size: clamp(16px, 1.5vw, 20px);
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}

.hero-dot {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background var(--t-fast);
}
.hero-dot.active { background: var(--gold); }

.hero-scroll-indicator {
  position: absolute;
  bottom: 100px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 4;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  writing-mode: vertical-rl;
}
.hero-scroll-indicator::after {
  content: '';
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s infinite;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollLine {
  0% { transform: translateY(-100%); opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

@media (max-width: 768px) {
  .hero-scroll-indicator { display: none; }
  .hero-dots { bottom: 24px; }
}

/* Bola Mikasa real no hero (ponto chave #1) */
.hero-ball {
  position: absolute;
  top: 15%;
  right: -6%;
  width: 420px;
  height: 420px;
  opacity: 0.65;
  z-index: 1;
  pointer-events: none;
  background-image: url('/assets/images/mikasa-v200w.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
  animation: ballFloat 14s ease-in-out infinite, ballSpin 40s linear infinite;
}

@keyframes ballFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes ballSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Combinar duas animações (float vem do parent, spin do filho conceitualmente) */
.hero-ball {
  animation: ballFloatSpin 30s linear infinite;
}

@keyframes ballFloatSpin {
  0%   { transform: translateY(0) rotate(0deg); }
  25%  { transform: translateY(-12px) rotate(90deg); }
  50%  { transform: translateY(0) rotate(180deg); }
  75%  { transform: translateY(-12px) rotate(270deg); }
  100% { transform: translateY(0) rotate(360deg); }
}

@media (max-width: 1024px) {
  .hero-ball { width: 280px; height: 280px; opacity: 0.4; right: -10%; }
}

@media (max-width: 600px) {
  .hero-ball { display: none; }
}

/* ============================================================
   STATS BAR (sob o hero)
============================================================ */
.stats-bar {
  background: var(--navy);
  padding: 36px 0;
  color: var(--white);
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
}

.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--gap-sm); }
  .stat-num { font-size: 40px; }
}

/* ============================================================
   SECAO QUEM SOMOS
============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--gap-xl);
  align-items: center;
}

.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; color: var(--text-secondary); }

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }

.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  padding: 20px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-badge .num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--navy-deep);
  line-height: 1;
}
.about-badge .lbl {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy-deep);
  font-weight: 700;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--gap-lg); }
}

/* ============================================================
   MODALIDADES
============================================================ */
.modalidades-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-md);
}

.modalidade-card {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-deep);
  cursor: pointer;
}

.modalidade-card .bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}
.modalidade-card:hover .bg { transform: scale(1.08); }

.modalidade-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 26, 62, 0.92) 100%);
}

.modalidade-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px;
  z-index: 2;
  color: var(--white);
}

.modalidade-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.modalidade-tag.masc { background: var(--gold); color: var(--navy-deep); }
.modalidade-tag.fem { background: var(--green); color: var(--navy-deep); }

.modalidade-titulo {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.9;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.modalidade-info {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}

.modalidade-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold);
  transition: gap var(--t);
}
.modalidade-link:hover { gap: 14px; }

@media (max-width: 900px) {
  .modalidades-grid { grid-template-columns: 1fr; }
  .modalidade-titulo { font-size: 42px; }
}

/* ============================================================
   CARDS DE ATLETA (Variante 1)
============================================================ */
.atletas-section { background: var(--bg-base); }

.atletas-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: var(--gap-lg); flex-wrap: wrap; gap: 20px;
}

.filtros {
  display: flex;
  gap: 8px;
  background: var(--white);
  padding: 6px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.filtro-btn {
  padding: 10px 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-radius: 999px;
  transition: all var(--t-fast);
}

.filtro-btn.active,
.filtro-btn:hover { background: var(--navy-deep); color: var(--white); }

.atletas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
}

.atleta-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--navy-deep);
  cursor: pointer;
  isolation: isolate;
}

.atleta-card .foto {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 0.7s ease;
}
.atleta-card:hover .foto { transform: scale(1.07); }

.atleta-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10, 26, 62, 0.45) 60%, rgba(10, 26, 62, 0.98) 100%);
}

.atleta-top {
  position: absolute;
  top: 16px; left: 16px; right: 16px;
  display: flex; justify-content: space-between; align-items: flex-start;
  z-index: 3;
}

.atleta-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.atleta-bottom {
  position: absolute;
  bottom: 18px; left: 20px; right: 20px;
  z-index: 3;
  color: var(--white);
}

.atleta-nome {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 0.95;
  letter-spacing: 1.2px;
}

.atleta-meta {
  display: flex; gap: 14px;
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.atleta-meta span:not(:last-child)::after {
  content: '·';
  margin-left: 14px;
  color: var(--gold);
}

.atleta-capitao {
  position: absolute;
  top: 50%; right: -10px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2.5px;
  padding: 6px 18px;
  transform: rotate(90deg);
  border-radius: 4px;
  z-index: 4;
}

@media (max-width: 1024px) {
  .atletas-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .atletas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .atletas-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CALENDARIO / PROXIMOS JOGOS
============================================================ */
.calendario-section {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.calendario-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 18px, rgba(255, 255, 255, 0.03) 18px, rgba(255, 255, 255, 0.03) 19px);
  pointer-events: none;
}

.calendario-section .container { position: relative; z-index: 2; }

.jogos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}

.jogo-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}

.jogo-card:hover {
  border-color: rgba(244, 200, 66, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.jogo-tipo {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: rgba(244, 200, 66, 0.18);
  color: var(--gold);
}

.jogo-tipo.competicao { background: rgba(108, 185, 121, 0.18); color: var(--green); }
.jogo-tipo.seletiva { background: rgba(40, 72, 168, 0.3); color: #8ba2e0; }

.jogo-data {
  display: flex; gap: 16px; align-items: baseline;
  margin-bottom: 16px;
}

.jogo-dia {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--gold);
  line-height: 0.9;
}

.jogo-mes-ano {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}
.jogo-mes-ano strong { display: block; color: var(--white); font-size: 14px; }

.jogo-titulo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1.2px;
  line-height: 1;
  margin-bottom: 14px;
}

.jogo-vs {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
}
.jogo-vs span { font-weight: 700; }
.jogo-vs .vs-tag {
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 800;
  color: var(--gold);
}

.jogo-info {
  display: flex; gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
}
.jogo-info > div { display: flex; align-items: center; gap: 6px; }
.jogo-info svg { width: 12px; height: 12px; color: var(--gold); }

@media (max-width: 900px) {
  .jogos-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BANNER FAÇA PARTE
============================================================ */
.banner-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: var(--radius-xl);
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}

.banner-cta::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 26, 62, 0.1), transparent 70%);
}

.banner-cta-content { position: relative; z-index: 2; }
.banner-cta-content h2 {
  color: var(--navy-deep);
  margin-bottom: 12px;
}
.banner-cta-content p {
  color: rgba(10, 26, 62, 0.85);
  font-size: 18px;
  margin-bottom: 28px;
  max-width: 460px;
}

.banner-cta-visual {
  position: relative;
  z-index: 2;
  text-align: right;
}
.banner-cta-visual .big-num {
  font-family: var(--font-display);
  font-size: 220px;
  color: var(--navy-deep);
  line-height: 0.85;
  letter-spacing: -2px;
  opacity: 0.95;
}
.banner-cta-visual .big-num-sub {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--navy-deep);
}

@media (max-width: 900px) {
  .banner-cta {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    text-align: center;
  }
  .banner-cta-visual { display: none; }
  .banner-cta-content p { margin-left: auto; margin-right: auto; }
}

/* ============================================================
   BLOG NOTICIAS
============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}

.post-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
  display: flex; flex-direction: column;
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.post-thumb {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  position: relative;
}

.post-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 5px 11px;
  border-radius: 4px;
  text-transform: uppercase;
}

.post-content {
  padding: 22px;
  display: flex; flex-direction: column;
  flex: 1;
}

.post-date {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.post-titulo {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy-deep);
  line-height: 1.05;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.post-resumo {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  flex: 1;
}

.post-link {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--t-fast);
}
.post-link:hover { gap: 12px; color: var(--gold-dark); }

@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

/* ============================================================
   GALERIA DE FOTOS
============================================================ */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 10px;
}

.galeria-item {
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
}

.galeria-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.galeria-item:nth-child(4) { grid-row: span 2; }
.galeria-item:nth-child(6) { grid-column: span 2; }

.galeria-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 26, 62, 0.3), transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
}

.galeria-item:hover::after { opacity: 1; }

@media (max-width: 900px) {
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .galeria-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .galeria-item:nth-child(4) { grid-row: span 1; }
  .galeria-item:nth-child(6) { grid-column: span 2; }
}

/* ============================================================
   DEPOIMENTOS
============================================================ */
.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}

.depo-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.depo-aspas {
  font-family: var(--font-display);
  font-size: 90px;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 10px;
  opacity: 0.6;
}

.depo-texto {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 22px;
  font-style: italic;
}

.depo-autor { display: flex; align-items: center; gap: 14px; }

.depo-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--navy);
  background-size: cover; background-position: center;
  flex-shrink: 0;
}

.depo-nome {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--navy-deep);
  letter-spacing: 1px;
  line-height: 1;
}

.depo-funcao {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

@media (max-width: 900px) { .depo-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PATROCINADORES
============================================================ */
.patro-section { background: var(--bg-base); }

.patro-track {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.patro-slider {
  display: flex;
  gap: 60px;
  animation: scrollLeft 28s linear infinite;
  width: max-content;
}

.patro-logo {
  height: 70px;
  display: flex;
  align-items: center;
  filter: grayscale(1);
  opacity: 0.55;
  transition: all var(--t);
  flex-shrink: 0;
}

.patro-logo:hover { filter: grayscale(0); opacity: 1; }

.patro-logo .placeholder {
  height: 70px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
}

@keyframes scrollLeft {
  to { transform: translateX(-50%); }
}

/* ============================================================
   INSTAGRAM FEED
============================================================ */
.insta-section { background: var(--white); }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.insta-item {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.insta-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10, 26, 62, 0.6);
  opacity: 0;
  transition: opacity var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
}

.insta-item:hover::after { opacity: 1; }

@media (max-width: 768px) {
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   FAQ
============================================================ */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-fast);
}

.faq-item.open { box-shadow: var(--shadow); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.faq-q-text {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--navy-deep);
  letter-spacing: 0.8px;
  flex: 1;
}

.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-base);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.open .faq-icon {
  background: var(--gold);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t);
  padding: 0 26px;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 26px 22px;
}

.faq-a p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================================
   MAPA
============================================================ */
.mapa-section { background: var(--bg-base); padding-bottom: 0; }

.mapa-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--gap-md);
  align-items: stretch;
}

.mapa-info {
  background: var(--navy-deep);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.mapa-info h3 { color: var(--white); margin-bottom: 18px; font-size: 36px; }
.mapa-info p { color: rgba(255, 255, 255, 0.85); margin-bottom: 22px; }

.mapa-info-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mapa-info-item:last-of-type { border-bottom: none; }

.mapa-info-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(244, 200, 66, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mapa-info-icon svg { width: 18px; height: 18px; }

.mapa-info-label {
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

.mapa-info-valor {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-top: 2px;
  line-height: 1.1;
}

.mapa-iframe {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mapa-iframe iframe { width: 100%; height: 100%; min-height: 460px; border: 0; }

@media (max-width: 900px) {
  .mapa-wrap { grid-template-columns: 1fr; }
  .mapa-iframe { min-height: 320px; }
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--green), var(--gold));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--gap-lg);
  padding-bottom: var(--gap-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img { height: 70px; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; margin-bottom: 20px; max-width: 320px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-list li { margin-bottom: 10px; }
.footer-list a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--t-fast);
}
.footer-list a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom .legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom .legal a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--t-fast);
}
.footer-bottom .legal a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--gap-md); }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   ANIMACOES SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left { transform: translateX(-40px); }
.reveal-left.visible { transform: translateX(0); }

.reveal-right { transform: translateX(40px); }
.reveal-right.visible { transform: translateX(0); }

/* ============================================================
   FORMULARIOS
============================================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .full { grid-column: span 2; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy-deep);
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--t-fast);
}

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

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

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.form-msg {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 18px;
}
.form-msg.success { background: rgba(108, 185, 121, 0.15); color: var(--green-dark); border-left: 4px solid var(--green); }
.form-msg.error { background: rgba(230, 57, 70, 0.1); color: #c1272d; border-left: 4px solid var(--error); }

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: span 1; }
}

/* ============================================================
   PAGE HEADER (paginas internas)
============================================================ */
.page-header {
  position: relative;
  background: var(--navy-deep);
  color: var(--white);
  padding: calc(var(--header-h) + 80px) 0 80px;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 18px, rgba(255, 255, 255, 0.03) 18px, rgba(255, 255, 255, 0.03) 19px);
}

.page-header-ball {
  position: absolute;
  top: 50%; right: -100px;
  transform: translateY(-50%);
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  opacity: 0.18;
}

.page-header-content { position: relative; z-index: 2; }
.page-header h1 { color: var(--white); margin-bottom: 14px; }

.breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb .sep { color: rgba(255, 255, 255, 0.3); }

/* ============================================================
   SCROLL TO TOP
============================================================ */
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: all var(--t);
  z-index: 100;
  cursor: pointer;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.whats-float {
  position: fixed;
  bottom: 24px; left: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: transform var(--t-fast);
}
.whats-float:hover { transform: scale(1.08); }
.whats-float svg { width: 28px; height: 28px; }

@media (max-width: 480px) {
  .whats-float { bottom: 20px; left: 20px; width: 50px; height: 50px; }
  .scroll-top { bottom: 20px; right: 20px; }
}

/* ============================================================
   LOADER
============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
.page-loader.hidden { opacity: 0; pointer-events: none; }

.loader-ball {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  animation: loadBounce 1s ease-in-out infinite;
}

@keyframes loadBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* ============================================================
   HEADER - Atualizações: logo SVG vazada, dropdown, intranet
============================================================ */

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 44px;
  position: relative;
}

.header-logo .logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity 0.25s ease;
}

/* No topo (header transparente sobre hero) — logo branca */
.header-logo .logo-img-white { display: block; }
.header-logo .logo-img-color { display: none; position: absolute; left: 0; top: 0; }

/* Quando rolar (header com fundo branco) — logo colorida */
.site-header.scrolled .header-logo .logo-img-white { display: none; }
.site-header.scrolled .header-logo .logo-img-color { display: block; position: static; }

/* Em páginas internas com header sólido — começa direto colorida */
.site-header.solid .header-logo .logo-img-white { display: none; }
.site-header.solid .header-logo .logo-img-color { display: block; position: static; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-intranet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.2s;
  text-decoration: none;
}

.header-intranet:hover {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.site-header.scrolled .header-intranet {
  background: rgba(10, 26, 62, 0.08);
  color: var(--navy);
  border-color: rgba(10, 26, 62, 0.12);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  font: inherit;
  color: inherit;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(10, 26, 62, 0.18);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 100;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--navy-deep);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.15s;
}

.nav-dropdown-menu a:hover {
  background: var(--bg-base);
  color: var(--gold-dark);
}

.nav-dropdown-menu a.active {
  background: var(--gold);
  color: var(--navy-deep);
}

@media (max-width: 980px) {
  .nav-dropdown, .header-intranet {
    display: none;
  }
}

/* Mobile drawer com logo SVG */
.mobile-drawer-logo {
  display: flex;
  align-items: center;
  height: 42px;
}

.mobile-drawer-logo img {
  height: 40px;
  width: auto;
  display: block;
}

/* ============================================================
   REFINAMENTOS PREMIUM — Tipografia editorial
   (estilo Nike/On Running/Adidas — sóbrio com personalidade)
============================================================ */

/* Eyebrows com underline elegante */
.eyebrow {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 4px;
  position: relative;
}

.eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

/* Títulos principais com hierarquia editorial */
h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.5px;
  color: var(--navy-deep);
}

h2 .accent {
  color: var(--gold-dark);
  font-style: italic;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.78em;
  letter-spacing: -1px;
}

/* Section title wrap padronizado */
.section-title-wrap {
  margin-bottom: 50px;
  max-width: 720px;
}

/* Section heading com número de fundo (editorial) */
.section-numerada {
  position: relative;
}

.section-numerada::before {
  content: attr(data-num);
  position: absolute;
  top: -20px;
  right: 30px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 200px;
  line-height: 0.85;
  color: rgba(10, 26, 62, 0.04);
  letter-spacing: -8px;
  pointer-events: none;
  z-index: 0;
}

/* Botões premium */
.btn {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.btn-primary,
.btn-solid {
  background: var(--navy-deep);
  color: white;
  border: 2px solid var(--navy-deep);
  padding: 16px 32px;
}

.btn-primary:hover,
.btn-solid:hover {
  background: transparent;
  color: var(--navy-deep);
}

.btn-ghost {
  background: transparent;
  border: 2px solid currentColor;
  padding: 14px 30px;
}

.btn-ghost:hover {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

/* Linhas separadoras douradas elegantes */
.divider-gold {
  width: 60px;
  height: 2px;
  background: var(--gold);
  border: none;
  margin: 24px 0;
}

/* Container com gutters maiores em desktop (espaço editorial) */
@media (min-width: 1200px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* Spacing entre seções mais generoso */
.section {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
}
