/* =========================
   VARIABLES
========================= */
:root {
  --text: #ffffff;
  --muted: rgba(255,255,255,0.6);
}

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

/* =========================
   BASE
========================= */
html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #000;
  color: var(--text);
  overflow-x: hidden;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 24px 0;
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(4px);
}

/* =========================
   MENÚ
========================= */
.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

/* =========================
   HERO VIDEO
========================= */
.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* VIDEO YOUTUBE */
.video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77vh;
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* OVERLAY OSCURO */
.video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5)),
    rgba(0,0,0,0.2);
  z-index: 1;
}

/* CONTENIDO HERO */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 0 20px 48px;
}

/* =========================
   ELEMENTOS ANIMADOS
========================= */
.hero-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 34px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-logos {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
}

/* =========================
   BOTONES
========================= */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border: 1px solid rgba(255,255,255,0.85);
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #fff;
  color: #000;
}

/* =========================
   LOGOS
========================= */
.hero-logos img {
  height: 52px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* =========================
   SECCIONES
========================= */
.page-content {
  min-height: 100vh;
  padding: 140px 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.page-content h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 850px;
}

/* =========================
   TROPA
========================= */
.crew-section {
  text-align: center;
}

.crew-intro {
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--muted);
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px 30px;
  margin-top: 40px;
}

.crew-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.crew-photo {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.18);
  margin-bottom: 18px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.crew-card:hover .crew-photo {
  transform: scale(1.04);
  border-color: rgba(255,255,255,0.55);
}

.crew-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.crew-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.4;
}

/* =========================
   FOOTER NUEVO
========================= */
.site-footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 80px 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* LOGO */
.footer-logo img {
  width: 140px;
  opacity: 0.85;
}

/* BLOQUES */
.footer-info {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-block {
  min-width: 180px;
}

/* TITULOS */
.footer-block h3 {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text);
}

/* TEXTO */
.footer-block p,
.footer-block a {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 6px;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.footer-block a:hover {
  color: var(--text);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .footer-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    align-items: center;
  }

  .footer-info {
    justify-content: center;
    gap: 30px;
  }

  .footer-logo img {
    width: 120px;
  }
}
}