/* ============================================================ */
/* ===== BANNER PRINCIPAL ===== */
/* ============================================================ */

.ss-banner {
  background: linear-gradient(135deg, #005198 0%, #26314d 100%);
  color: #ffffff;
  padding: 70px 25px;
  text-align: center;
}

.ss-banner-inner {
  max-width: 900px;
  margin: 0 auto;
}

.ss-banner-super {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #B8CDDE;
  margin-bottom: 10px;
}

.ss-banner h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
}

.ss-banner-sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto;
  max-width: 780px;
}

/* ============================================================ */
/* ===== SECCIONES ===== */
/* ============================================================ */

.ss-section {
  padding: 55px 25px;
  background: #ffffff;
}

.ss-section.ss-alt {
  background: #f0f7ff;
}

.ss-container {
  max-width: 1000px;
  margin: 0 auto;
}

.ss-heading {
  text-align: center;
  margin-bottom: 30px;
}

.ss-heading .ss-super {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #B8CDDE;
  background: #005198;
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.ss-heading h2 {
  color: #005198;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 10px;
}

.ss-heading-sub {
  color: #555555;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 auto 8px auto;
  max-width: 760px;
}

/* ============================================================ */
/* ===== CARRUSEL ===== */
/* ============================================================ */

.ss-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto 30px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  border-top: 4px solid #005198;
}

.ss-carousel-slides {
  display: flex;
  overflow: hidden;
}

.ss-carousel-slide {
  display: none;
  width: 100%;
  flex-shrink: 0;
}

.ss-carousel-slide.active {
  display: block;
}

.ss-carousel-slide img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.ss-carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ss-carousel-control:hover {
  background: #005198;
}

.ss-carousel-control.prev {
  left: 12px;
}

.ss-carousel-control.next {
  right: 12px;
}

.ss-carousel-indicators {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 5;
}

.ss-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.3s;
}

.ss-dot.active {
  background: #005198;
}

/* ============================================================ */
/* ===== CONTENIDO / CARACTERÍSTICAS ===== */
/* ============================================================ */

.ss-content {
  max-width: 820px;
  margin: 0 auto;
}

.ss-lead {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #005198;
  margin-bottom: 20px;
}

.ss-features {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.ss-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 15px;
  background: #f0f7ff;
  border-left: 3px solid #005198;
  border-radius: 6px;
  font-size: 15px;
  color: #333333;
  line-height: 1.5;
  margin-bottom: 8px;
}

.ss-features li i {
  color: #005198;
  font-size: 17px;
  margin-top: 2px;
}

.ss-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 820px;
}

.ss-note {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #005198;
  background: #ffffff;
  border: 1px solid #005198;
  border-radius: 10px;
  padding: 14px 20px;
  margin: 20px auto 0 auto;
  max-width: 720px;
}

.ss-note i {
  margin-right: 6px;
}

/* ============================================================ */
/* ===== SUBTÍTULOS DE EDIFICIOS ===== */
/* ============================================================ */

.ss-subsection {
  margin-bottom: 40px;
}

.ss-subsection h3 {
  color: #26314d;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 18px;
}

.ss-subsection h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #005198;
  margin: 8px auto 0 auto;
  border-radius: 2px;
}

/* ============================================================ */
/* ===== VIDEO DE YOUTUBE ===== */
/* ============================================================ */

.ss-video-section {
  background: #26314d;
}

.ss-video-section .ss-heading h2 {
  color: #ffffff;
}

.ss-video {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.ss-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================ */
/* ===== BLOQUES MEDIA (SALA DOCUMENTACIÓN / ESTACIONAMIENTO) ===== */
/* ============================================================ */

.ss-media-block {
  display: flex;
  align-items: center;
  gap: 40px;
}

.ss-media-text {
  flex: 1;
}

.ss-media-text .ss-heading {
  text-align: left;
  margin-bottom: 15px;
}

.ss-media-text .ss-heading h2 {
  margin-bottom: 5px;
}

.ss-media-text .ss-features {
  margin: 0;
}

.ss-media-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 18px;
}

.ss-media-img {
  flex: 1;
}

.ss-media-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  border-top: 4px solid #005198;
}

/* ============================================================ */
/* ===== RESPONSIVE ===== */
/* ============================================================ */

@media (max-width: 768px) {
  .ss-banner {
    padding: 45px 18px;
  }

  .ss-banner h2 {
    font-size: 26px;
  }

  .ss-banner-sub {
    font-size: 15px;
  }

  .ss-section {
    padding: 35px 15px;
  }

  .ss-heading h2 {
    font-size: 23px;
  }

  .ss-carousel-slide img {
    height: 240px;
  }

  .ss-features-grid {
    grid-template-columns: 1fr;
  }

  .ss-media-block {
    flex-direction: column;
    gap: 20px;
  }

  .ss-media-text .ss-heading {
    text-align: center;
  }

  .ss-media-img img {
    height: 220px;
  }
}
