/* GENERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  overflow-x: hidden;
}

/* MENÚ SUPERIOR */
.top-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #1e1e1e;
  padding: 12px 0;
  z-index: 1000;
}
.top-nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 35px;
}
.top-nav a {
  text-decoration: none;
  color: #e0e0e0;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.top-nav a:hover {
  color: #ffff;
}
.top-nav .active a {
  font-weight: 700;
  color: #fff;
}

/* HERO VIDEO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

/* CONTENIDO CENTRAL */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
}
.hero-content p {
  font-size: 1rem;
  margin-top: 10px;
  letter-spacing: 1px;
  color: #f1f1f1;
}
.logo img {
  width: 500px;
  margin-bottom: 15px;
}

/* MENÚ LATERAL */
.side-menu {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 2;
}
.side-menu a {
  background: rgba(60, 60, 60, 0.85);
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  letter-spacing: 0.5px;
}
.side-menu a:hover {
  background: #ccc;
  transform: translateX(-5px);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .hero-content h1 { font-size: 2.4rem; }
  .side-menu {
    right: 20px;
    gap: 12px;
  }
  .side-menu a {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

.side-menu {
  z-index: 999999 !important;
  pointer-events: auto !important;
}

.side-menu a {
  position: relative;
  z-index: 9999999 !important;
}


