/* ===== HERO ===== */
.hero-cultura {
  height: 75vh;
  background: url("../images/hero/pexels-diva-plavalaguna-6147381.jpg") center/cover no-repeat fixed;
  position: relative;
}
.hero-cultura .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7));
}
.hero-cultura h1,
.hero-cultura p {
  z-index: 2;
  position: relative;
}

/* ===== SECCIÓN GENERAL ===== */
.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
  position: relative;
}
.section-title:after {
  content: "";
  width: 70px;
  height: 4px;
  background: #ffc107;
  display: block;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

/* ===== BLOQUES INFORMATIVOS ===== */
.info-block {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all .3s ease;
}
.info-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.info-block i {
  font-size: 2.5rem;
  color: #ffc107;
  margin-bottom: 15px;
}

/* ===== NOTICIAS CULTURALES ===== */
.cultura-noticia {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  transition: all .3s ease;
}
.cultura-noticia:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.cultura-noticia img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.cultura-noticia-body {
  padding: 20px;
}
.cultura-noticia-body h5 {
  font-weight: 700;
  font-size: 1.2rem;
}
.cultura-noticia-body p {
  font-size: 0.95rem;
  color: #444;
}

.cultura-noticia-body h5 {
  font-weight: 700;
  font-size: 1.05rem;
  min-height: 48px; /* asegura tamaño uniforme */
  overflow: hidden;
}


/* === GALERÍA CULTURAL === */
.cultura-galeria .cultura-galeria-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #fff;
  transition: transform .25s ease;
}

.cultura-galeria .cultura-galeria-item:hover {
  transform: translateY(-6px);
}

/* Tamaño uniforme */
.cultura-galeria-img {
  width: 100%;
  height: 220px;          /* ← tamaño controlado */
  object-fit: cover;      /* ← evita deformación */
  display: block;
}

/* Overlay */
.cultura-galeria-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.75));
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: .3s ease;
}

.cultura-galeria-item:hover .cultura-galeria-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Animación fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: all .7s ease-out;
}
.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}

.actividad-card, .evento-card {
  border-radius: 12px;
  background: #fff;
  transition: .3s ease;
}

.actividad-card:hover, .evento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.actividad-img, .evento-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}


