/*CONTENIDOR CULTURA I ESPORT */

.contenidorPrincipal {
  width: 100%;
  max-width: 1100px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

/* Columna cultura */
.columnaEsquerraCULTURA {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Columna esport */
.columnaDretaESPORT {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* TÍTOLS */
.panellTitol {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blanc);
  background: var(--rosa);
  padding: 10px 20px;
  border-radius: var(--radius);
  text-align: center;
}

/* CONTENIDOR DEL CARRUSEL */
.contenidorCarrusel {
  width: 100%;
  background: var(--blanc);
  border-radius: var(--radius);
  box-shadow: var(--ombra);
  overflow: hidden;
}

/* CARRUSEL */
.carrusel {
  position: relative;
  min-height: 520px;
  max-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
}

/* SLIDES */
.slide {
  display: none;
  flex-direction: column;
}

.slide-desc {
  padding: 6px 20px 12px;
  max-height: 80px;
  overflow: hidden;
}
.slide.active {
  display: flex;
}

/* IMATGE */
.slide img,
.slide-img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  display: block;
}

/* CONTINGUT */
.slide h3 {
  font-size: 1.2rem;
  margin: 10px 0;
}

.slide p {
  font-size: 0.9rem;
  color: var(--gris-text);
}
.carruselError {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
  padding: 32px;
  text-align: center;
}

.carruselErrorBtn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 24px;
  border: 2px solid var(--rosa);
  color: var(--rosa);
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carruselErrorBtn:hover {
  background: var(--rosa);
  color: #fff;
}

/*  Navegació  */
.fletxa {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #444 !important;
  font-size: 1.6rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.fletxa:hover {
  background-color: rgba(175, 21, 86, 0.35) !important;
  color: #fff !important;
}
.fletxa:hover i,
.fletxa:hover svg,
.fletxa:hover span,
.fletxa:hover * {
  color: #fff !important;
  fill: #fff !important;
  stroke: #fff !important;
}
.fletxa-esq {
  left: 0;
}
.fletxa-dre {
  right: 0;
}
/* BOTÓ MES INFORMACIO CULTURA */
.botoInfoCultura {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.botoInfoCultura a {
  background: var(--rosa);
  color: var(--blanc);
  text-decoration: none;

  padding: 12px 28px;
  border-radius: 50px;

  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  transition: var(--transicio);
  box-shadow: 0 4px 14px rgba(175,21,86,0.15);
}

.botoInfoCultura a:hover {
  background: var(--rosa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(175,21,86,0.25);
}

.nav button:hover {
  background: var(--rosa-dark);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contenidorPrincipal {
    flex-direction: column;
    gap: 24px;
  }

  .slide img {
    height: 180px;
    object-fit: contain;
  }
}