/* ============================================================
   OSTER FUTEBOL CLUBE — style.css
   ============================================================ */

:root {
  --black:      #0e0e0e;
  --black-rich: #111111;
  --off-white:  #F2EDE3;
  --cream:      #E8E0D0;
  --gray:       #999991;
  --gray-light: #C8C4BC;
  --gray-dim:   rgba(242,237,227,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  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 48px;
  height: 64px;
  background: rgba(14,14,14,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(242,237,227,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--off-white);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--off-white);
  cursor: pointer;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--off-white); }

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 64px 80px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gray);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.92;
  color: var(--off-white);
  margin-bottom: 32px;
}

.hero-title em {
  font-style: italic;
  color: var(--cream);
}

.hero-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-light);
  max-width: 400px;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
}

.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--off-white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(242,237,227,0.15);
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-logo-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(242,237,227,0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-logo {
  width: min(340px, 80%);
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.6));
}

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

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--off-white);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  padding: 13px 28px;
  border: 1px solid rgba(242,237,227,0.25);
  color: var(--off-white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: var(--off-white);
  background: rgba(242,237,227,0.06);
}

/* ── SECTIONS ────────────────────────────────────────────── */
section { padding: 120px 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-label::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gray);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  color: var(--off-white);
  margin-bottom: 24px;
}

.section-title em { font-style: italic; }

/* light section overrides */
.section-light .section-label { color: rgba(14,14,14,0.4); }
.section-light .section-label::after { background: rgba(14,14,14,0.25); }
.section-light .section-title { color: var(--black); }

/* ── HISTÓRIA ─────────────────────────────────────────────── */
#historia { background: var(--black); }

.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.historia-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-light);
  margin-bottom: 20px;
  font-weight: 300;
}

.historia-body strong { color: var(--off-white); font-weight: 500; }

/* Timeline */
.timeline {
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 0;
  width: 1px;
  background: rgba(242,237,227,0.12);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px; top: 8px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--off-white);
  box-shadow: 0 0 0 3px rgba(242,237,227,0.12);
}

.timeline-date {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}

.timeline-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--off-white);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.timeline-text {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.65;
  font-weight: 300;
}

/* ── ORIGEM ───────────────────────────────────────────────── */
#origem {
  background: var(--off-white);
  color: var(--black);
}

.origem-layout {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  align-items: center;
}

.origem-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(14,14,14,0.68);
  margin-bottom: 20px;
  font-weight: 300;
}

.origem-text strong { color: var(--black); font-weight: 600; }

.origem-quote {
  border-left: 3px solid var(--black);
  padding: 16px 24px;
  margin: 32px 0;
  background: rgba(14,14,14,0.04);
}

.origem-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--black);
}

.origem-quote cite {
  display: block;
  margin-top: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(14,14,14,0.4);
  font-style: normal;
}

.fato-cards { display: flex; flex-direction: column; gap: 20px; }

.fato-card {
  background: var(--black);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.fato-card::before {
  content: attr(data-num);
  position: absolute;
  right: 16px; top: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 900;
  color: rgba(242,237,227,0.04);
  line-height: 1;
  pointer-events: none;
}

.fato-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}

.fato-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--off-white);
  margin-bottom: 6px;
}

.fato-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  font-weight: 300;
}

/* ── COMPETIÇÕES ──────────────────────────────────────────── */
#competicoes { background: var(--black-rich); }

.comp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.comp-card {
  background: rgba(242,237,227,0.03);
  border: 1px solid rgba(242,237,227,0.07);
  padding: 40px 32px;
  transition: background 0.3s;
}

.comp-card:hover { background: rgba(242,237,227,0.06); }

.comp-icon { font-size: 36px; margin-bottom: 20px; display: block; }

.comp-modal {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--off-white);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.comp-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.comp-divider {
  width: 32px; height: 1px;
  background: rgba(242,237,227,0.2);
  margin-bottom: 20px;
}

.comp-detail {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 20px;
}

.comp-badge {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid rgba(242,237,227,0.15);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ── PATROCINADORES ───────────────────────────────────────── */
#patrocinadores {
  background: var(--off-white);
}

.patroc-intro {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(14,14,14,0.65);
  max-width: 640px;
  margin-bottom: 64px;
  font-weight: 300;
}

.patroc-grid {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr;
  gap: 24px;
  margin-bottom: 40px;
}

.patroc-card {
  background: #1A1A1A;
  border: 1px solid rgba(245, 245, 220, 0.15);
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}

.patroc-card:hover {
  border-color: rgba(245, 245, 220, 0.3);
}

.patroc-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1; /* Permite que o respiro se distribua mas o conteúdo alinhe abaixo */
}

/* Alinhamento óptico */
.patroc-master .patroc-logo-wrap {
  padding-top: 16px;
  padding-bottom: 8px; /* Mais espaço acima do que abaixo para balancear o logo horizontal */
}

.patroc-secondary {
  padding: 40px 56px; /* Muito mais respiro lateral pro logo vertical não "explodir" o card */
}

.master-logo {
  max-width: 200px; /* 20% respiro interno no envolto da imagem */
  object-fit: contain;
}

.secondary-logo {
  max-width: 120px; /* Reduzido em área para "flutuar" no espaço negativo */
  object-fit: contain;
}

/* Linha Divisória - O Toque Retrô */
.patroc-divider {
  width: 100%;
  height: 1px;
  background: #F5F5DC;
  opacity: 0.15;
  margin-top: 24px;
  margin-bottom: 24px;
}

.patroc-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.patroc-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.26em; /* Tracking aumentado */
  text-transform: uppercase;
  color: #F5F5DC;
  opacity: 0.75;
  margin-bottom: 8px; /* Respiro entre Tag e Titulo */
}

.patroc-name {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 34px;
  color: #F5F5DC;
  margin-bottom: 12px; /* Respiro entre Titulo e Desc */
  line-height: 1.1;
}

.patroc-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(245, 245, 220, 0.65);
  font-weight: 300;
  max-width: 90%;
}

/* Slots */
.patroc-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.patroc-slot {
  border: 1px dashed rgba(14,14,14,0.18);
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}

.patroc-slot:hover {
  border-color: rgba(14,14,14,0.35);
  background: rgba(14,14,14,0.03);
}

.patroc-slot-tier {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(14,14,14,0.3);
  margin-bottom: 6px;
}

.patroc-slot-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: rgba(14,14,14,0.25);
}

/* CTA bar */
.patroc-cta {
  background: var(--black);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.patroc-cta h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--off-white);
  margin-bottom: 4px;
}

.patroc-cta p {
  font-size: 13.5px;
  color: var(--gray);
  font-weight: 300;
}

/* ── APOIADOR ─────────────────────────────────────────────── */
.apoiador-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-areas: "title logo" "text logo";
  column-gap: 60px;
  row-gap: 16px;
  align-items: center;
}
.apoiador-title { grid-area: title; margin-bottom: 0; }
.apoiador-text { grid-area: text; }
.apoiador-logo { grid-area: logo; }

/* ── FOTO DE EQUIPE ───────────────────────────────────────── */
.foto-moldura {
  width: 100%;
  max-width: 900px;
  background: var(--black);
  margin: 48px auto 0;
  border: 4px solid var(--black);
  padding: 12px;
  position: relative;
  display: flex;
}

.foto-placeholder {
  flex: 1;
  background: #1a1a1a;
  border: 1px dashed rgba(245,245,220,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
}

.foto-icon {
  font-size: 48px;
  opacity: 0.5;
  margin-bottom: 24px;
}

.foto-placeholder p {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(245,245,220,0.7);
  font-weight: 300;
}

/* ── CARROSSEL DE JOGADORES ───────────────────────────────── */
.carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 100vw;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-viewport {
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  padding: 60px 0;
}

.carousel-track {
  display: flex;
  align-items: center;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.player-card {
  flex: 0 0 320px;
  margin: 0 16px;
  background: var(--black);
  border: 1px solid rgba(245,245,220,0.1);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  
  transform: scale(0.85);
  opacity: 0.4;
  filter: blur(2px) grayscale(50%);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.player-card.active {
  transform: scale(1.05);
  opacity: 1;
  filter: blur(0) grayscale(0);
  border-color: rgba(245, 245, 220, 0.3);
  box-shadow: 0 24px 48px rgba(0,0,0,0.15);
  z-index: 2;
}

.player-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 1px dashed rgba(245,245,220,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.player-photo span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,245,220,0.5);
  padding: 0 16px;
  line-height: 1.4;
}

.player-name {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--off-white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.player-positions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding: 16px 0;
  border-top: 1px solid rgba(245,245,220,0.08);
  border-bottom: 1px solid rgba(245,245,220,0.08);
}

.pos-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.pos-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

.pos-val {
  font-family: 'Barlow', sans-serif;
  color: var(--off-white);
  font-weight: 400;
}

.player-bio {
  font-family: 'Barlow', sans-serif;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(245,245,220,0.65);
  font-weight: 300;
}

.carousel-btn {
  background: transparent;
  border: 1px solid var(--black);
  color: var(--black);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
  flex-shrink: 0;
  position: absolute;
}

.carousel-btn:hover {
  background: var(--black);
  color: var(--off-white);
}

.prev-btn { left: 24px; }
.next-btn { right: 24px; }

@media (max-width: 960px) {
  .prev-btn { left: 8px; }
  .next-btn { right: 8px; }
}

@media (max-width: 768px) {
  .player-card { flex: 0 0 280px; padding: 32px 24px; margin: 0 8px; }
  .carousel-btn { display: none; }
  .carousel-viewport { overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 24px; scroll-behavior: smooth; }
  .player-card { scroll-snap-align: center; }
  .player-card { transform: scale(0.95); opacity: 0.6; filter: none; }
  .player-card.active { transform: scale(1); opacity: 1; box-shadow: none; border-color: rgba(245, 245, 220, 0.3); }
}

/* ── AMISTOSO ─────────────────────────────────────────────── */
#amistoso { background: var(--black); }

.amistoso-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: start;
}

.amistoso-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 40px;
  font-weight: 300;
}

.amistoso-details { display: flex; flex-direction: column; gap: 20px; }

.amistoso-item { display: flex; gap: 16px; align-items: flex-start; }

.amistoso-item-icon {
  width: 36px; height: 36px;
  background: rgba(242,237,227,0.05);
  border: 1px solid rgba(242,237,227,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.amistoso-item-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--off-white);
  margin-bottom: 2px;
}

.amistoso-item-sub {
  font-size: 12.5px;
  color: var(--gray);
  font-weight: 300;
}

/* ── FORM ─────────────────────────────────────────────────── */
.form-wrap {
  background: rgba(242,237,227,0.03);
  border: 1px solid rgba(242,237,227,0.08);
  padding: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}

input, select, textarea {
  background: rgba(242,237,227,0.04);
  border: 1px solid rgba(242,237,227,0.1);
  color: var(--off-white);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 12px 16px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s, background 0.2s;
}

input::placeholder, textarea::placeholder { color: rgba(242,237,227,0.22); }

input:focus, select:focus, textarea:focus {
  border-color: rgba(242,237,227,0.4);
  background: rgba(242,237,227,0.06);
}

select option { background: #1a1a1a; color: var(--off-white); }
textarea { resize: vertical; min-height: 100px; }

.form-submit {
  margin-top: 8px;
  width: 100%;
  padding: 16px;
  background: var(--off-white);
  color: var(--black);
  border: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.form-submit:hover { background: var(--cream); transform: translateY(-1px); }

.form-success {
  display: none;
  text-align: center;
  padding: 56px 24px;
}

.form-success-icon { font-size: 40px; margin-bottom: 16px; }

.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--off-white);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 14px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.7;
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(242,237,227,0.08);
  padding: 56px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-brand img { width: 40px; height: 40px; object-fit: contain; }

.footer-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
}

.footer-tagline {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 280px;
  font-weight: 300;
}

.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 14px;
  color: rgba(242,237,227,0.5);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--off-white); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(242,237,227,0.06);
}

.footer-copy {
  font-size: 12px;
  color: rgba(242,237,227,0.28);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.footer-est {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242,237,227,0.18);
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .mobile-menu-btn { display: block; }
  .nav-links { 
    display: flex; 
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    position: absolute; 
    top: 64px; left: 0; right: 0; 
    background: rgba(14,14,14,0.98); 
    backdrop-filter: blur(12px);
    flex-direction: column; 
    padding: 32px 24px; 
    gap: 24px; 
    border-bottom: 1px solid rgba(242,237,227,0.08); 
  }
  .nav-links.open { 
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  #hero { grid-template-columns: 1fr; min-height: auto; padding-top: 64px; }
  .hero-left { padding: 64px 24px 56px; }
  .hero-right { padding: 8px 24px 0; }
  
  .apoiador-layout { display: flex; flex-direction: column; text-align: center; gap: 32px; }
  .hero-stats { margin-top: 32px; }

  .historia-grid,
  .origem-layout,
  .amistoso-layout,
  .patroc-grid,
  .footer-inner { grid-template-columns: 1fr; gap: 40px; display: grid; }

  .comp-grid,
  .patroc-slots { grid-template-columns: 1fr; }

  .patroc-master, .patroc-secondary { padding: 32px; }
  .patroc-cta { flex-direction: column; align-items: flex-start; }

  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px; }
  .container { padding: 0 24px; }
  section { padding: 80px 0; }
}
