:root {
  --oro: #D4AF37;
  --oscuro: #1a1a1a;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #f0f2f5;
}

header {
  background: var(--oscuro);
  padding: 12px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid var(--oro);
}

.main-logo {
  height: 50px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

.live-now-badge {
  background: #FF0000;
  color: white;
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 1.5rem;
  font-weight: 800;
  animation: pulse-live 1.5s infinite;
  display: inline-block;
  margin: 10px 0;
}

@keyframes pulse-live {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Botones Redes Sociales */
.social-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.btn-social {
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  color: white;
  transition: 0.3s;
}

.btn-youtube {
  background: #FF0000;
}

.btn-facebook {
  background: #1877F2;
}

.btn-social:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.carrusel-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carrusel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carrusel-item {
  min-width: 100%;
  height: 350px;
}

.carrusel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.main-layout {
  max-width: 1000px;
  margin: 20px auto;
  padding: 0 20px;
}

.content-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  border-radius: 12px;
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border: 0;
}

.btn-calendario-premium {
  display: block;
  text-align: center;
  background: var(--oscuro);
  color: var(--oro);
  padding: 12px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid var(--oro);
  margin-top: 15px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-width: 90%;
  max-height: 80%;
  border: 3px solid var(--oro);
}

.cerrar {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 50px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .carrusel-item {
    height: 250px;
  }
}