.section-padding {
  padding: 80px 0 100px;
}
.container-custom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: all 0.4s ease;
  padding: 1.2rem 0;
}
.navbar.scrolled {
  background-color: var(--color-overlay);
  backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  box-shadow: var(--shadow-medium);
}
.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo_menu {
  width: 220px;
}
.nav-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-icon {
  color: var(--color-white);
  font-size: 1.3rem;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0;
  transform: translateY(-15px);
  animation: iconReveal 0.6s forwards 0.4s;
}
@keyframes iconReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-icon:hover {
  color: var(--color-accent);
}
.hamburger-menu-alt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  cursor: pointer;
  z-index: 1002;
}
.hamburger-line-alt {
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger-menu-alt.active .hamburger-line-alt:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger-menu-alt.active .hamburger-line-alt:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-menu-alt.active .hamburger-line-alt:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.overlay-menu-alt {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-overlay);
  backdrop-filter: blur(8px);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  clip-path: circle(0% at 95% 5%);
}
.overlay-menu-alt.active {
  opacity: 1;
  visibility: visible;
  clip-path: circle(150% at 95% 5%);
}
.overlay-nav-alt {
  list-style: none;
  text-align: center;
  padding: 0;
}
.overlay-nav-item-alt {
  margin: 2rem 0;
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.3s 0.1s;
}
.overlay-menu-alt.active .overlay-nav-item-alt {
  opacity: 1;
  transform: translateY(0);
}
.overlay-nav-link-alt {
  font-size: 2rem;
  color: white;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
}
.overlay-nav-link-alt:hover {
  color: var(--color-accent);
}
/* Calendario */
.calendar-section-alt {
  background: linear-gradient(145deg, #fefaf5 0%, #ffffff 100%);
  margin-top: 80px;
}
.section-title-alt {
  font-size: 2.8rem;
  text-align: center;
  color: var(--color-secondary);
  margin-bottom: 3rem;
  position: relative;
}
.section-title-alt::after {
  content: "";
  width: 100px;
  height: 3px;
  background: var(--color-accent);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.calendar-container-alt {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: overflow 0.2s;
}
.calendar-container-alt.banner-open {
  overflow: visible;
}
.calendar-header-alt {
  background: var(--color-primary);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}
.calendar-nav-alt {
  background: none;
  border: none;
  color: white;
  font-size: 1.4rem;
  padding: 0.5rem 1rem;
  transition: 0.2s;
}
.calendar-nav-alt:hover {
  color: var(--color-accent);
  transform: scale(1.1);
}
.calendar-month-alt {
  font-size: 1.8rem;
  font-weight: 600;
}
.calendar-weekdays-alt {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--color-secondary);
  color: white;
  text-align: center;
  padding: 1rem 0;
  font-weight: 600;
}
.calendar-days-alt {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #eee;
  gap: 1px;
}
.calendar-day-alt {
  background: white;
  height: 140px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
}
.calendar-day-alt:hover {
  background: #fff9f0;
  transform: translateY(-2px);
  z-index: 2;
}
/* Event cell */
.event-day-alt {
  background: #fffbf5;
  padding: 0;
  overflow: hidden;
}
.event-day-number {
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-accent);
  background: rgba(255, 255, 240, 0.9);
  backdrop-filter: blur(4px);
  padding: 2px 8px;
  border-radius: 30px;
  z-index: 5;
  pointer-events: none;
}
.event-slider-container {
  width: 100%;
  height: 100%;
  min-height: 130px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3efe7;
  overflow: hidden;
}
.event-slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.event-slider-img:hover {
  transform: scale(1.02);
}
/* TICKET BANNER - efecto deslizante */
.ticket-banner {
  position: absolute;
  z-index: 1500;
  background: white;
  overflow: hidden;
  cursor: default;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-radius: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  will-change: transform;
}
.ticket-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}
.ticket-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 2px solid white;
  z-index: 10;
}
.ticket-close:hover {
  background: var(--color-accent);
  transform: scale(1.05);
}
/* Modal con formulario y backdrop con blur */
.modal-backdrop.show {
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2000;
}
.modal {
  z-index: 2001;
}
.modal-form {
  border-radius: 20px;
  overflow: hidden;
}
.modal-form .modal-header {
  background: var(--color-primary);
  color: white;
  border-bottom: none;
  padding: 1.2rem 1.5rem;
}
.modal-form .modal-header .btn-close {
  filter: brightness(0) invert(1);
}
.modal-form .modal-body {
  padding: 2rem;
}
.modal-form .form-label {
  font-weight: 500;
  color: var(--color-secondary);
}
.modal-form .form-control {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  transition: 0.2s;
}
.modal-form .form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.2rem rgba(176, 141, 87, 0.25);
}
.btn-submit {
  background-color: var(--color-accent);
  color: white;
  border: none;
  border-radius: 40px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  width: 100%;
  transition: 0.2s;
}
.btn-submit:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
}
/* Footer */
.footer-alt {
  background-color: var(--color-secondary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 2rem;
}
.footer-content-alt {
  text-align: center;
}
.footer-logo-alt {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.footer-tagline-alt {
  opacity: 0.8;
  max-width: 500px;
  margin: 0 auto 1.5rem;
}
.footer-links-alt {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}
.footer-link-alt {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.footer-link-alt:hover {
  color: var(--color-accent);
}
@media (max-width: 768px) {
  .calendar-day-alt {
    min-height: 120px;
  }
  .event-slider-container {
    min-height: 110px;
  }
  .event-day-number {
    font-size: 1rem;
    top: 4px;
    right: 6px;
  }
  .calendar-month-alt {
    font-size: 1.4rem;
  }
  .section-title-alt {
    font-size: 2rem;
  }
  .ticket-close {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    top: 8px;
    right: 8px;
  }
  .modal-form .modal-body {
    padding: 1.5rem;
  }
}
@media (max-width: 576px) {
  .calendar-day-alt {
    min-height: 100px;
  }
  .event-slider-container {
    min-height: 90px;
  }
}
