/* Parallax temporada */
.season-hero {
  position: relative;
  min-height: 440px;
  background: url("../../img/fechas/noviembre-menu.webp") center/cover no-repeat fixed;
  /* cambia la imagen */
  padding: 4.5rem 1rem;
}

.season-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* overlay en degradado sutil para legibilidad */
  background: linear-gradient(180deg, rgba(0, 0, 0, .38), rgba(0, 0, 0, .38));
}

.season-hero .container {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

/* Badge del mes */
.season-badge {
  display: inline-block;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: .35rem .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.season-note {
  font-weight: 600;
  opacity: .9;
}

/* Timeline */
/* Timeline general */
.timeline {
  position: relative;
  padding-left: 0;
}

/* Línea vertical centrada en la columna de fecha */
.timeline::before {
  content: "";
  position: absolute;
  left: 60px;
  /* mitad de los 120px de la columna */
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(212, 175, 55, .6), rgba(212, 175, 55, .25));
  z-index: 0;
  /* línea detrás */
}

/* Cada ítem */
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  /* columna fecha + contenido */
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* Punto sobre la línea */
.timeline-item::before {
  content: "";
  position: absolute;
  left: 60px;
  /* mismo valor que la línea */
  top: 22px;
  /* centrado con la badge */
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--gold);
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, .15);
  z-index: 1;
  /* punto por encima de la línea */
}

/* Badge de fecha */
.time-badge {
  align-self: start;
  font-weight: 800;
  color: #7a641a;
  background: linear-gradient(180deg, #fff, #fff9e8);
  border: 1px solid rgba(212, 175, 55, .45);
  border-radius: .65rem;
  padding: .5rem .7rem;
  text-align: center;
  line-height: 1.2;
  white-space: normal;
  /* permite saltos */
  word-break: keep-all;
  z-index: 2;
  font-size: 12px;
  /* sobre la línea */
}

@media (min-width: 1200px) {
  .time-badge {
    align-self: start;
    font-weight: 800;
    color: #7a641a;
    background: linear-gradient(180deg, #fff, #fff9e8);
    border: 1px solid rgba(212, 175, 55, .45);
    border-radius: .65rem;
    padding: .5rem .7rem;
    text-align: center;
    line-height: 1.2;
    white-space: normal;
    font-size: 20px;
    /* permite saltos */
    word-break: keep-all;
    z-index: 2;
    /* sobre la línea */
  }
}


/* Responsive */
@media (max-width: 575.98px) {
  .timeline-item {
    grid-template-columns: 100px 1fr;
    /* menos ancho en móvil */
  }

  .timeline::before,
  .timeline-item::before {
    left: 50px;
    /* mitad de la columna */
  }
}


/* Sección CTA fechas especiales */
/* Caja dorada llamativa (sin imagen) */
.cta-gold-box {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--gold2), var(--gold-deep));
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Sutil destello diagonal */
.cta-gold-box::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(ellipse at 20% 0%, rgba(255, 255, 255, .28), transparent 55%);
  pointer-events: none;
}

/* Tipografía con alto contraste sobre dorado */
.cta-title {
  letter-spacing: .2px;
  color: #fff;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .25);
}

.cta-text {
  color: #fff;
}

/* Botón de alto contraste sobre dorado: contorno blanco y hover a blanco */
.btn-contrast {
  position: relative;
  display: inline-block;
  padding: .95rem 1.5rem;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  line-height: 1;
  z-index: 0;
  transition: color .3s ease;
}

.btn-contrast::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(-100%);
  transition: transform .35s ease;
  z-index: 0;
}

.btn-contrast>span {
  position: relative;
  z-index: 1;
  transition: color .35s ease;
}

.btn-contrast:hover::before {
  transform: translateX(0);
}

.btn-contrast:hover>span {
  color: var(--gold);
}

/* Responsive micro-ajustes */
@media (max-width: 576px) {
  .cta-title {
    font-size: 1.5rem;
  }

  .cta-text {
    font-size: 20px;
  }
}