/* =========================
   RESET GENERAL
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: #000;
  color: #fff;
}

/* =========================
   MENÚ GLOBAL
========================= */

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  padding: 15px 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  z-index: 1000;
}

.menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.menu a:hover {
  color: #f5c86a;
}

/* =========================
   HERO (INDEX)
========================= */

.hero {
  position: relative;
  height: 100vh;
  background: url("logo-centralistas.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.85)
  );
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 20px;
  max-width: 900px;
}

.hero-content h1 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.slogan {
  margin-top: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #f5c86a;
}

/* =========================
   BOTONES REDES SOCIALES
========================= */

.social-buttons {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.social-buttons a {
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  color: #000;
  background: linear-gradient(135deg, #ffd36a, #e3a900);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-buttons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(255, 200, 100, 0.4);
}

/* =========================
   CONTENIDO GENERAL (PÁGINAS INTERNAS)
========================= */

.contenido {
  padding-top: 120px;   /* espacio para menú fixed */
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 60px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.contenido h1 {
  margin-bottom: 30px;
}

.contenido h2 {
  margin-top: 40px;
  margin-bottom: 15px;
}

/* =========================
   IMÁGENES GENERALES
========================= */

.contenido img {
  width: 100%;
  max-width: 700px;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
}

.logo-evento {
  max-width: 200px;
  margin: 15px auto;
}

/* =========================
   TEXTO DESTACADO Y LISTAS
========================= */

.texto-destacado {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 20px 0;
}

.lista {
  max-width: 500px;
  margin: 20px auto;
  list-style: none;
  padding: 0;
}

.lista li {
  padding: 6px 0;
}

/* =========================
   BOTONES GENERALES
========================= */

.boton {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #ffd36a, #e3a900);
  color: #000;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
}

/* =========================
   FOOTER
========================= */

footer {
  background: #000;
  text-align: center;
  padding: 15px;
  font-size: 0.85rem;
  color: #aaa;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 600px) {

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .slogan {
    font-size: 1rem;
  }

  .menu {
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px;
  }

  .contenido {
    padding-left: 20px;
    padding-right: 20px;
  }
}
