h1.title{
  display: none;
}
.breadcrumb-container {
  width: min(1400px, 94%);
  margin: 2rem auto 1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  width: fit-content;
}

.breadcrumb a {
  color: var(--primary);
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.breadcrumb .separator {
  color: #a7d0b0;
}

.breadcrumb .current {
  color: var(--secondary);
  font-weight: 700;
}

.sede-hero {
  background: linear-gradient(135deg, var(--primary), #1a5a4a);
  padding: 3.5rem 1rem;
  text-align: center;
  color: white;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.sede-hero::before {
  content: "🏛️";
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-size: 150px;
  opacity: 0.08;
  transform: rotate(10deg);
}

.sede-hero .container {
  position: relative;
  z-index: 2;
}

.sede-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
}

.sede-hero p {
  font-size: 1.1rem;
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,0.92);
}

.seccion-sede {
  width: min(1200px, 94%);
  margin: 0 auto;
}

.bloque {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
  margin-bottom: 3rem;
}

.bloque-imagen {
  position: relative;
  background: #e9ecef;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carrusel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carrusel-contenedor {
  position: relative;
  width: 100%;
  height: 100%;
}

.carrusel-slides {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.carrusel-slide {
  min-width: 100%;
  height: 400px;
  cursor: pointer;
}

.carrusel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.carrusel-slide img:hover {
  transform: scale(1.02);
}

.carrusel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carrusel-btn:hover {
  background: var(--secondary);
}

.carrusel-prev {
  left: 10px;
}

.carrusel-next {
  right: 10px;
}

.carrusel-indicadores {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.indicador {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}

.indicador.activo {
  background: var(--secondary);
  transform: scale(1.2);
}

.bloque-texto {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bloque-texto h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.bloque-texto p {
  line-height: 1.8;
  color: #2d3e50;
  text-align: justify;
}

.mapa iframe {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  border: none;
  box-shadow: var(--shadow);
}

.descripcion-universidad {
  background: linear-gradient(135deg, #a7d0b0, #e8d7b5);
  padding: 2.5rem;
  border-radius: 28px;
  margin-top: 2rem;
  margin-bottom: 4rem;
  text-align: center;
}

.descripcion-universidad h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.descripcion-universidad p {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto;
  color: #2d3e50;
}

/* Modal imagen */
.modal-imagen {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 4000;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 1rem;
}

.modal-imagen.activo {
  display: flex;
}

.modal-imagen img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0,0,0,0.45);
}

.cerrar-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 42px;
  font-weight: bold;
  cursor: pointer;
}

@media (max-width: 992px) {
  .bloque {
    grid-template-columns: 1fr;
  }

  .bloque-imagen {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .sede-hero h1 {
    font-size: 2rem;
  }

  .bloque-texto h2 {
    font-size: 1.5rem;
  }

  .carrusel-slide {
    height: 300px;
  }
}