/* Carousel Aplicaciones */

.sectors-carousel {
  width: 100%;
  margin: 0;
  padding: 0;
}

.sectorsSwiper {
  padding-top: 0;
  padding-bottom: 40px !important;
  position: relative;
}

.sectorsSwiper .swiper-slide {
  height: auto;
}

.sector-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 0;
  text-decoration: none;
  background: #000;
}

.sector-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  transition: transform 0.6s ease;
}

.sector-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 20, 50, 0.95) 0%,
      rgba(10, 20, 50, 0.70) 40%,
      rgba(10, 20, 50, 0.15) 80%,
      rgba(10, 20, 50, 0.05) 100%);
}

.sector-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 20px;
  color: #fff;
  font-family: var(--awb-typography5-font-family);
}

.sector-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.sector-content p {
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
  opacity: 0.9;
  max-width: 95%;
}

.sector-line {
  display: block;
  margin-top: 18px;
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.35);
}

/* Hover */
.sector-card:hover img {
  transform: scale(1.12);
}


/* Tamaño del icono */

.sector-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  text-decoration: none;
  background: #000;
}

.sector-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  transition: transform 0.6s ease;
}

.sector-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 20, 50, 0.95) 0%,
      rgba(10, 20, 50, 0.70) 40%,
      rgba(10, 20, 50, 0.15) 80%,
      rgba(10, 20, 50, 0.05) 100%);
}

.sector-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 40px;
  color: #fff;
  font-family: var(--awb-typography5-font-family);
  transition: transform 0.35s ease;
}

.sector-content h5 {
  margin: 0 0 10px 0;
  line-height: 1.2;
  color:white!important;
}

.sector-content p {
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
  opacity: 0.9;
}

.sector-line {
  display: block;
  margin-top: 18px;
  width: 80px;
  height: 5px;
  background: var(--awb-color2);
}

/* Link oculto */
.sector-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}

.sector-link .arrow {
  margin-left: 6px;
}

/* Hover: zoom imagen */
.sector-card:hover img {
  transform: scale(1.12);
}

/* Hover: sube el contenido */
.sector-card:hover .sector-content {
  transform: translateY(-15px);
}

/* Hover: aparece el enlace */
.sector-card:hover .sector-link {
  opacity: 1;
  transform: translateY(0);
  max-height: 50px;
}

.sectors-carousel .swiper .swiper-button-next,
.sectors-carousel .swiper .swiper-button-prev{  
  width:44px; height:32px;
  display:flex; align-items:center; justify-content:center;
  color:#fff !important;
  background:var(--awb-color2);
  border:1px solid #fff;
}
.sectorsSwiper  .swiper-button-next:hover,
.sectorsSwiper  .swiper-button-prev:hover{
  background:var(--awb-color3);
}


.swiper-navigation-icon{height:12px!important;}

.sectorsSwiper .swiper-button-prev {
position:absolute !important; 
right: 55px!important; 
left: auto!important; 
bottom:0!important; 
top:auto!important;
}

.sectorsSwiper .swiper-button-next {
position:absolute !important; 
right: 0!important;
bottom:0!important; 
top:auto!important;
}