/* =========================== */
/*          HERO               */
/* =========================== */
.hero-sociales {
  height: 75vh;
  background: url("../images/hero/pexels-ddoneo-10421160.jpg") center/cover no-repeat fixed;
  position: relative;
}
.hero-sociales .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7));
}
.hero-sociales h1,
.hero-sociales p {
  z-index: 2;
  position: relative;
}

/* =========================== */
/*      TITULOS GENERALES     */
/* =========================== */
.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: #dc3545; /* rojo social */
  display: block;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

/* =========================== */
/*       INFO CARDS           */
/* =========================== */
.info-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all .3s ease;
}
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.info-card i {
  font-size: 2.7rem;
  color: #dc3545;
}

/* =========================== */
/*      ACTIVIDADES           */
/* =========================== */
.actividad-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  transition: all .3s ease;
  border-left: 4px solid #dc3545;
}
.actividad-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.actividad-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* =========================== */
/*          EVENTOS           */
/* =========================== */
.evento-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  transition: all .3s ease;
  border-top: 4px solid #dc3545;
}
.evento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.evento-card .evento-icon {
  font-size: 2.5rem;
  color: #dc3545;
  margin-bottom: 10px;
}

/* =========================== */
/*         GALERÍA            */
/* =========================== */
.galeria-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #fff;
  transition: transform .25s ease;
}

.galeria-item:hover {
  transform: translateY(-6px);
}

.cultura-galeria-img,
.social-galeria-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.galeria-item .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;
}
.galeria-item:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

/* =========================== */
/*      NOTICIAS TARJETAS      */
/* =========================== */
.cultura-noticia {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  transition: all .3s ease;
}
.cultura-noticia:hover {
  transform: translateY(-5px);
}
.cultura-noticia img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.cultura-noticia-body {
  padding: 18px;
}
.cultura-noticia-body h5 {
  font-size: 1.1rem;
  font-weight: 700;
}

/* =========================== */
/*         ANIMACIONES        */
/* =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: all .7s ease-out;
}
.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}
