/* ===== Sección Comite Base ===== */
.seccion__comite {
  padding: clamp(1rem, 4vw, 2rem);
  color: #333;
  font-family: "Segoe UI", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 4vw, 2rem);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.676) 0%,
    rgba(3, 33, 88, 0.249) 100%
  );
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  box-sizing: border-box;
  overflow-x: hidden;
  min-height: 60dvh;
}
#eventoSociales {
  margin-bottom: 2rem;
}

/* ===== Encabezado ===== */
.seccion__comite h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #113b8a;
  text-align: center;
}

/* ===== Artículo del Comité ===== */
.articulo__comite {
  width: 100%;
  max-width: 1000px;
  padding: clamp(1rem, 3vw, 1.5rem);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.491) 0%,
    rgba(255, 255, 255, 0.53) 100%
  );
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  box-sizing: border-box;
}

.articulo__comite h3 {
  margin-top: 1rem;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: #004080;
}

.articulo__comite p,
.articulo__comite li {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.6;
}

.articulo__comite ul {
  padding-left: 1.5rem;
  list-style-type: disc;
}

/* ===== Tarjetas Actividades ===== */
.actividad {
  position: relative;
  width: clamp(260px, 80vw, 320px);
  min-height: 400px;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.actividad:hover,
.actividad:focus-within {
  transform: scale(1.02);
}

/* ===== Overlay Actividad ===== */
.actividad__info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  padding: 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;

  color: white;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  border-radius: 0.5rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);

  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.actividad:hover .actividad__info,
.actividad:focus-within .actividad__info {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.actividad__info h4 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.actividad__info p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  font-weight: 400;
  text-align: left;
  text-wrap: pretty;
}

.actividad__info h4,
.actividad__info p {
  padding-left: clamp(0.5rem, 2vw, 1rem);
  padding-right: clamp(0.5rem, 2vw, 1rem);
}

/* ===== Media Queries Adicionales ===== */
@media (max-width: 768px) {
  .actividad {
    width: 90%;
  }

  .actividad__info {
    padding: 1rem;
  }
}

@media (min-width: 1200px) {
  .seccion__comite {
    max-width: 1200px;
    margin: 0 auto;
  }
}
