/* ===== HERO ===== */
.hero-fiestas {
  position: relative;
  height: 65vh;
  background: url('../images/hero/71rBONyUngL._AC_UF894,1000_QL80_.jpg') center/cover no-repeat;
}
.hero-fiestas .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

/* ===== FIESTA CARDS ===== */
.fiesta-card {
  display: flex;
  gap: 1.5rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  opacity: 0;
}
.fiesta-card:hover {
  transform: translateY(-5px);
}
.fiesta-img {
  width: 160px;
  height: 160px;
  object-fit: cover;
}

/* ===== TIMELINE ===== */
.timeline-section {
  background: linear-gradient(135deg, #184c36, #0f392a);
}
.timeline {
  position: relative;
  border-left: 4px solid #ffc107;
  margin-left: 25px;
  padding-left: 25px;
}
.timeline-item {
  margin-bottom: 40px;
  position: relative;
  opacity: 0;
}
.timeline-dot {
  position: absolute;
  left: -34px;
  top: 5px;
  width: 18px;
  height: 18px;
  background: #ffc107;
  border-radius: 50%;
}
.timeline-content {
  background: #fff;
  padding: 1.2rem;
  border-radius: 12px;
}

/* ===== GALERÍA ===== */
.galeria-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
}
.galeria-img:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ===== ANIMACIONES ===== */
.fade-left {
  transform: translateX(-60px);
}
.fade-right {
  transform: translateX(60px);
}
.fade-up {
  transform: translateY(40px);
}
.in-view {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .fiesta-card {
    flex-direction: column;
    text-align: center;
  }
  .fiesta-img {
    width: 100%;
    height: 220px;
  }
  .timeline {
    border-left: none;
    padding-left: 0;
  }
  .timeline-dot {
    display: none;
  }
}
