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

:root {
  --red: #c0392b;
  --gold: #d4a017;
  --dark: #0d0d0d;
  --dark2: #161616;
  --dark3: #1e1e1e;
  --light: #f0f0f0;
  --muted: #888;
  --radius: 8px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--dark); color: var(--light); line-height: 1.6; }
h1, h2, h3 { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1px; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: #fff; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* NAV */
#header {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(13,13,13,.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid #222;
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: .6rem; font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); letter-spacing: 3px; }
.logo-img { height: 36px; width: 36px; object-fit: contain; }
.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a { color: var(--light); font-size: .85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.menu-btn { display: none; background: none; border: none; color: var(--light); font-size: 1.5rem; cursor: pointer; }

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,13,13,.93) 45%, rgba(192,57,43,.25)); }
.hero-content { position: relative; z-index: 1; padding-top: 64px; }
.hero-tag { display: inline-block; background: var(--red); color: #fff; font-size: .75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: .3rem .8rem; border-radius: 4px; margin-bottom: 1.2rem; }
.hero-content h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 1rem; }
.hero-content h1 span { color: var(--gold); }
.hero-content > p { font-size: 1.1rem; color: #ccc; max-width: 520px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn { display: inline-block; background: var(--red); color: #fff; padding: .75rem 1.8rem; border-radius: var(--radius); font-family: 'Oswald', sans-serif; font-size: .95rem; letter-spacing: 1px; text-transform: uppercase; transition: background .2s, transform .2s; }
.btn:hover { background: #a93226; color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--dark); }

/* SECTIONS */
.section { padding: 5rem 0; }
.bg-dark { background: var(--dark2); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1.5rem; }
h2.center { text-align: center; }
.subtitle { color: var(--muted); text-align: center; margin-top: -.8rem; margin-bottom: 2.5rem; }

/* SOBRE */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.text-block p { color: #bbb; margin-bottom: 1rem; }
.text-block strong { color: var(--gold); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat { background: var(--dark3); border: 1px solid #2a2a2a; border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.stat span { display: block; font-family: 'Oswald', sans-serif; font-size: 2rem; color: var(--gold); font-weight: 700; }
.stat p { color: var(--muted); font-size: .85rem; margin-top: .3rem; }

/* CARDS */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card { background: var(--dark3); border: 1px solid #2a2a2a; border-radius: var(--radius); padding: 2rem; transition: border-color .2s, transform .2s; }
.card:hover { border-color: var(--gold); transform: translateY(-4px); }
.card-icon { font-size: 2rem; margin-bottom: 1rem; }
.card h3 { font-size: 1.1rem; margin-bottom: .6rem; color: var(--gold); }
.card p { color: #aaa; font-size: .9rem; }

/* EVENTOS */
.events-list { display: flex; flex-direction: column; gap: 1rem; }
.event-item { display: flex; align-items: flex-start; gap: 1.2rem; background: var(--dark3); border: 1px solid #2a2a2a; border-left: 4px solid var(--red); border-radius: var(--radius); padding: 1.5rem; transition: border-left-color .2s; }
.event-item:hover { border-left-color: var(--gold); }
.event-placeholder { opacity: .55; border-left-color: #444; border-style: dashed; }
.event-badge { flex-shrink: 0; background: var(--red); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: .3rem .6rem; border-radius: 4px; margin-top: .2rem; white-space: nowrap; }
.badge-upcoming { background: #2a5a2a; }
.event-item h3 { font-size: 1rem; color: var(--light); margin-bottom: .4rem; }
.event-item p { color: #999; font-size: .88rem; }

/* GALERIA */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.gallery-item { overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; background: var(--dark3); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s, filter .4s; filter: brightness(.85); }
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1); }

/* LIGHTBOX */
.lightbox { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.92); align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); object-fit: contain; }
.lb-close, .lb-prev, .lb-next { position: absolute; background: rgba(255,255,255,.1); border: none; color: #fff; font-size: 1.8rem; cursor: pointer; border-radius: 50%; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.25); }
.lb-close { top: 1.5rem; right: 1.5rem; }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }

/* PRESIDENTE */
.president { background: linear-gradient(135deg, var(--dark) 60%, #1a0a0a); }
.president-inner { display: flex; align-items: center; gap: 2.5rem; }
.president-avatar { flex-shrink: 0; width: 90px; height: 90px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-size: 1.8rem; font-weight: 700; color: #fff; border: 3px solid var(--gold); }
.president h2 { font-size: 1.6rem; margin-bottom: .2rem; }
.president-title { color: var(--gold); font-size: .9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: .8rem; }
.president p { color: #aaa; font-size: .95rem; }

/* CONTATO */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; background: var(--dark3); border: 1px solid #2a2a2a; border-radius: var(--radius); padding: 1.5rem; }
.contact-item span { font-size: 1.5rem; }
.contact-item strong { display: block; color: var(--gold); margin-bottom: .3rem; font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; }
.contact-item p, .contact-item a { color: #bbb; font-size: .9rem; }

/* FOOTER */
.footer { background: #080808; border-top: 1px solid #1a1a1a; padding: 2.5rem 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: .5rem; text-align: center; }
.footer-logo { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.footer-logo img { height: 32px; opacity: .7; }
.footer-logo span { font-family: 'Oswald', sans-serif; font-size: 1.2rem; color: var(--gold); letter-spacing: 2px; }
.footer p { color: var(--muted); font-size: .85rem; }
.footer a { color: var(--muted); }
.footer a:hover { color: var(--gold); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu-btn { display: block; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; width: 100%; background: var(--dark2); padding: 1rem 1.5rem 1.5rem; gap: 1rem; border-bottom: 1px solid #222; }
  .nav-links.open { display: flex; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .president-inner { flex-direction: column; text-align: center; }
  .lb-prev { left: .5rem; }
  .lb-next { right: .5rem; }
}

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