/* === HERO PARTICIPACIONES === */
.hero-participaciones {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr;
  max-width: 1200px;
  margin: 40px auto 50px; /* sistema hero */
  padding: 0 40px;        /* sistema hero */
  gap: 40px;
  align-items: start;
  text-align: left;       /* hero sin cards = left */
}

/* Columna base */
.hero-participaciones .columna {
  background: none;
}

/* Imagen */
.hero-participaciones .columna.imagen {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Slider */
.hero-participaciones .slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
}

.hero-participaciones .slides {
  display: flex;
  transition: transform 0.6s ease;
}

.hero-participaciones .slides img {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 8px;
}

/* Bolitas desktop */
.hero-participaciones .slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.hero-participaciones .slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-participaciones .slider-dots button.active {
  background: #000;
}

/* === TEXTO === */
.hero-participaciones .columna.contenido h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 22px;
}

/* ✅ categoría */
.hero-participaciones .columna.contenido .categoria {
  font-size: 14px;
  font-weight: 400;
  color: #000 !important;
  margin-bottom: 18px;
}

/* Texto principal */
.hero-participaciones .columna.contenido p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--body-text);
  margin-bottom: 14px;
}

/* === ARCHIVO lateral === */
.hero-participaciones .columna.archivo h2 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  padding-left: 20px;
}

.hero-participaciones .lista-archivo {
  background: #f3f3f3;
  padding: 18px;
  border-radius: 8px;
  list-style: none;
}

.hero-participaciones .lista-archivo li {
  margin-bottom: 8px;
}

/* ✅ gris por defecto */
.hero-participaciones .lista-archivo a {
  display: block;
  padding: 5px;
  border-radius: 6px;
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.45;
  transition: color .2s ease, background .2s ease;
}

/* ✅ item activo */
.hero-participaciones .lista-archivo a.activo {
  color: #000;
  font-weight: 700;
}

/* Hover (solo desktop) */
@media (min-width: 861px) {
  .hero-participaciones .lista-archivo a:hover {
    background: #fafafa;
    color: #000;
  }
}

/* === MOBILE === */
@media (max-width: 860px) {
  .hero-participaciones {
    grid-template-columns: 1fr;
    gap: 26px;
    margin: 60px auto 32px; /* sistema hero */
    padding: 0 16px;        /* sistema hero */
    text-align: left;
  }

  .hero-participaciones .slider-dots {
    display: none !important;
  }

  .hero-participaciones .columna.contenido {
    margin-bottom: 40px;
  }

  .hero-participaciones .columna.contenido h1 {
    margin-bottom: 14px;
  }

  .hero-participaciones .columna.contenido .categoria {
    margin: -2px 0 18px;
  }
}

/* Separación correcta entre título, categoría y texto */
.hero-participaciones .texto .titulo {
  margin-bottom: 18px !important;
}

.hero-participaciones .texto .categoria-label {
  margin-bottom: 16px !important;
  display: block;
  font-weight: 400;
  color: #121212;
}

/* ✅ Desktop spacing refinado */
@media (min-width: 861px) {
  .hero-participaciones .lista-archivo li {
    margin-bottom: 3px;
  }

  .hero-participaciones .lista-archivo a {
    padding: 3px 4px;
    font-size: 14px;
    line-height: 1.35;
    color: var(--body-text);
  }

  .hero-participaciones .lista-archivo a.activo {
    color: #000;
    font-weight: 700;
  }
}
