body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

/* LOGO CON EFECTO */
.logo-container {
  position: relative;
  display: inline-block;
  margin-top: 40px;
  margin-bottom: 20px; /* ← agrega esto */
}

.logo {
  width: 120px;
  animation: pulseGlow 4s infinite;
  z-index: 2;
  position: relative;
}

.light-beam {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 120px;
  background: radial-gradient(ellipse at center, #f9b23366 0%, transparent 100%);
  clip-path: polygon(50% 0%, 90% 100%, 10% 100%);
  animation: beamFlow 6s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes pulseGlow {
  0%, 100% { filter: drop-shadow(0 0 5px #f9b233); }
  50% { filter: drop-shadow(0 0 20px #f9b233); }
}

@keyframes beamFlow {
  0%, 100% { opacity: 0; transform: translateX(-50%) scaleY(0.1); }
  40% { opacity: 1; transform: translateX(-50%) scaleY(1); }
  80% { opacity: 0.5; transform: translateX(-50%) scaleY(1.05); }
}

/* HERO TEXT */
.hero h1.highlighted {
  font-size: 3.2em;
  margin: 10px 0 5px 0;
  color: #f9b233;
}

.hero h2 {
  font-size: 1.5em;
  color: #aaa;
  margin-bottom: 15px;
}

.tagline {
  font-size: 1.2em;
  color: #ccc;
  margin-bottom: 30px;
}

.cta-buttons .btn {
  padding: 12px 25px;
  border-radius: 40px;
  font-weight: bold;
  margin: 0 10px;
  text-decoration: none;
  display: inline-block;
}

.btn.primary {
  background: #f9b233;
  color: #000;
}

.btn.secondary {
  background: transparent;
  border: 2px solid #f9b233;
  color: #f9b233;
}

/* SECCIÓN DEL BANNER PANORÁMICO */
.banner-section img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: cover;
  filter: brightness(1) contrast(1.1);
  mask-image: linear-gradient(to right, transparent 0%, black 25%, black 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%, black 75%, transparent 100%);
}

/* ANUNCIO DEL TORNEO */
.anuncio {
  background: #111;
  padding: 40px 20px;
  color: #f9f9f9;
}

.anuncio h3 {
  color: #f9b233;
  font-size: 1.8em;
}

/* DESCRIPCIÓN */
.descripcion {
  padding: 40px 20px;
  color: #ddd;
}

.descripcion h3 {
  font-size: 1.6em;
  color: #f9b233;
}

/* FOOTER */
footer {
  padding: 30px;
  font-size: 0.9em;
  color: #888;
  background: #000;
}
.auspicio-nivel {
  padding: 40px 20px;
  border-top: 1px solid #333;
}

.auspicio-nivel h3 {
  color: #f9b233;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.logo-grid img {
  filter: brightness(1.1) contrast(1.2);
  transition: transform 0.3s;
}

.logo-grid img:hover {
  transform: scale(1.1);
}

.logo-grid.grande img {
  max-width: 220px;
}

.logo-grid.mediana img {
  max-width: 140px;
}

.colaboradores-lista {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.colaboradores-lista li {
  margin: 8px 0;
  font-size: 1.1em;
  color: #ddd;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 40px 20px;
  background-color: #0e0e0e;
}

.galeria-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

.galeria-grid img:hover {
  transform: scale(1.03);
}

