:root {
  --bg: #100d09;
  --bg-alt: #191410;
  --text: #f5eedd;
  --text-dim: #beac8c;
  --gold: #e0a83e;
  --gold-dark: #a8721f;
  --rust: #b6501f;
  --cream: #f0e0b8;
  --card-bg: #1d1712;
  --border: #382d1f;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.6;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: 1px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 8px;
}
.section-title span { color: var(--gold); }

.section-subtitle {
  text-align: center;
  color: var(--text-dim);
  margin-bottom: 40px;
}

.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(90deg, var(--gold), var(--rust));
  color: #14100a;
  box-shadow: 0 0 20px rgba(224, 168, 62, 0.35);
}
.btn-primary:hover { box-shadow: 0 0 30px rgba(224, 168, 62, 0.6); }
.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: rgba(224, 168, 62, 0.1); }
.btn-small {
  padding: 8px 18px;
  font-size: 0.8rem;
  border: 2px solid var(--gold);
  color: var(--gold);
  white-space: nowrap;
}
.btn-small:hover { background: rgba(224, 168, 62, 0.1); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(16, 13, 9, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 2px;
}
.logo img { height: clamp(44px, 6vw, 58px); width: auto; }
.logo span { color: var(--gold); text-shadow: 0 0 10px rgba(224, 168, 62, 0.5); }

.footer-logo img { height: clamp(70px, 12vw, 110px); width: auto; margin-bottom: 4px; }

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  margin-right: 20px;
}
.nav a {
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dim);
  transition: color 0.2s;
}
.nav a:hover { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 8px 16px;
  border-radius: 999px;
}
.nav-cta:hover { background: rgba(224, 168, 62, 0.1); }

.insta-icon { color: var(--text-dim); transition: color 0.2s; }
.insta-icon:hover { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text);
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-media img,
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,13,9,0.55) 0%, rgba(16,13,9,0.8) 60%, var(--bg) 100%);
}
.hero-badge {
  height: clamp(90px, 16vw, 170px);
  width: auto;
  margin: 0 auto 18px;
  filter: drop-shadow(0 0 24px rgba(224, 168, 62, 0.45));
}
.hero-content h1 {
  font-size: clamp(3.5rem, 12vw, 7rem);
  line-height: 0.95;
}
.hero-content h1 span {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(224, 168, 62, 0.6), 0 0 50px rgba(168, 114, 31, 0.4);
}
.hero-tagline {
  color: var(--cream);
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin: 18px 0 34px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* Sobre */
.sobre-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 780px;
  margin: 0 auto;
}
.sobre-text { text-align: center; width: 100%; }
.sobre-text p { color: var(--text-dim); margin-bottom: 18px; }
.sobre-text p:first-of-type { color: var(--text); font-size: 1.1rem; }
.sobre-kombi {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.kombi-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 14px;
  margin-top: 20px;
}
.kombi-strip .gallery-item {
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.sobre-stats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  width: 100%;
}
.sobre-stats .stat { flex: 1 1 180px; }
.stat {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
}
.stat span { color: var(--text-dim); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

/* Agenda */
.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.agenda-item {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  flex-wrap: wrap;
}
.agenda-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 72px;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--gold), var(--rust));
  color: #14100a;
}
.agenda-date .dia { font-family: var(--font-display); font-size: 1.6rem; line-height: 1; }
.agenda-date .mes { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.agenda-info { flex: 1; min-width: 180px; }
.agenda-info h3 {
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.agenda-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 2px 10px;
}
.agenda-info p { color: var(--text-dim); font-size: 0.9rem; }
.agenda-empty-note {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.9rem;
}
.agenda-empty-note a { color: var(--gold); text-decoration: underline; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 180px), 1fr));
  gap: 12px;
}
.gallery-item {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1 / 1;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.15) sepia(0.1);
}

/* Videos */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.video-item video {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #000;
}
.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background-color: #000;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-play-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 13, 9, 0.25);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.video-play-btn:hover { background: rgba(16, 13, 9, 0.4); }
.video-play-btn svg {
  color: #14100a;
  background: var(--gold);
  border-radius: 50%;
  padding: 18px;
  width: 56px;
  height: 56px;
  box-shadow: 0 0 24px rgba(224, 168, 62, 0.5);
  transition: transform 0.2s ease;
}
.video-play-btn:hover svg { transform: scale(1.08); }
.video-title {
  text-align: center;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: var(--gold);
}
.video-cta { text-align: center; }

/* Members */
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.member-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 24px;
  transition: border-color 0.2s;
}
.member-card:hover { border-color: var(--gold); }
.member-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.member-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.member-card h3 { margin-top: 16px; font-size: 1.4rem; }
.member-role {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 6px 0 10px;
}
.member-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
  padding: 0 18px;
}

/* Contato */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contato-text p { color: var(--text-dim); margin: 16px 0 24px; }
.contato-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contato-links a {
  font-weight: 600;
  transition: color 0.2s;
}
.contato-links a:hover { color: var(--gold); }

.contato-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.contato-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text-dim);
}
.contato-form input,
.contato-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  resize: vertical;
}
.contato-form input:focus,
.contato-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* Footer */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.footer-logo { font-size: 1.3rem; }
.footer-inner p { color: var(--text-dim); font-size: 0.9rem; }
.copyright { margin-top: 6px; font-size: 0.8rem; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 30px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(224, 168, 62, 0.25);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .sobre-grid, .contato-grid { grid-template-columns: 1fr; }
  .sobre-grid { gap: 30px; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 18px;
    margin: 0;
    transform: translateY(-150%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav.open { transform: translateY(0); opacity: 1; }
  .nav a { padding: 10px 0; border-bottom: 1px solid var(--border); }
  .nav-cta { text-align: center; }
  .hamburger { display: flex; }
  .video-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .kombi-strip { grid-template-columns: repeat(2, 1fr); }
}
