.img-hover {
  overflow: hidden;
  border-radius: 1rem;
}

.img-hover img {
  transition: transform 0.6s ease, filter 0.6s ease;
}

.img-hover:hover img {
  /*transform: scale(1.04);*/
  filter: contrast(1.05);
}

.list-unstyled li {
  display: flex;
  align-items: flex-start;
}

.list-unstyled i {
  margin-top: 4px;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero {
    height: 50vh !important;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }
}

section h2 {
  font-weight: 700;
  letter-spacing: 0.3px;
}

section p {
  color: #444;
  line-height: 1.7;
}

.bg-light {
  background: #f7f9fc !important;
}

/* TITULARES POTENCIADOS */
.section-title {
  font-weight: 800;
  letter-spacing: 0.6px;
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 10px;
  /*background: linear-gradient(90deg, #0d6efd, #00b4d8);*/
  background: linear-gradient(90deg, #0d6efd, #00b4d8);
  border-radius: 2px;
}

.text-highlight {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2f2f2f;
}

.text-highlight strong {
  color: #0076BE;
  font-weight: 700;
}

.statement {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.6;
  border-left: 5px solid #0076BE;
  padding-left: 1.2rem;
  color: #1f2933;
}

.feature-list li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
}

.feature-list i {
  font-size: 1rem;
}


/* ===== Navegación de Sectores ===== */
.sector-nav {
  position: relative;
  z-index: 10;
}

.sector-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #f8f9fa;
  border-radius: 16px;
  padding: 22px 15px;
  height: 100%;
  color: #1f2d3d;
  font-weight: 600;
  transition: all 0.35s ease;
  border: 2px solid transparent;
}

.sector-btn i {
  font-size: 28px;
  margin-bottom: 8px;
  color: #0076BE;
}

.sector-btn span {
  font-size: 15px;
  letter-spacing: 0.3px;
}

/*.sector-btn:not(.active):hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  background: #ffffff;
}*/

/* Mantener activo incluso sin hover */
.sector-btn.active {
  transform: translateY(-4px);
  border: 2px solid #e6b800;
}

.sector-btn.active {
  background: linear-gradient(135deg, #0076BE, #0b4ea2) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 20px 45px rgba(13,110,253,0.35) !important;
}

.sector-btn.active i {
  color: #e6b800 !important;
}

/* Mobile */
@media (max-width: 576px) {
  .sector-btn {
    padding: 18px 10px;
  }

  .sector-btn i {
    font-size: 24px;
  }

  .sector-btn span {
    font-size: 14px;
  }
}

