@charset "UTF-8";
ul {
  list-style-type: square; /* ou circle, disc, none */
  text-decoration: none;
}

ul a {
  color: #202020;
}

li::marker {
  color: #00368A;
}

.link-body {
  background-image: url("/assets/img/links/link-bg.webp") !important;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.container-links {
  justify-content: center !important;
}

.link-box-large {
  position: relative;
  height: 200px;
  flex-grow: 0;
  margin: 0 10px 0 0;
  background-image: linear-gradient(to bottom, rgba(239, 239, 239, 0.2), rgba(239, 239, 239, 0.05));
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 576px) {
  .link-box-large {
    height: 400px;
  }
}

.link-box-small {
  position: relative;
  height: 200px;
  flex-grow: 0;
  margin: 0 10px 0 0;
  background-image: linear-gradient(to bottom, rgba(239, 239, 239, 0.2), rgba(239, 239, 239, 0.05));
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  z-index: 1;
}
.link-box-small .logo-image {
  height: 100px;
}
@media (max-width: 576px) {
  .link-box-small {
    max-height: 150px;
  }
  .link-box-small .logo-image {
    width: 100px;
  }
}

.card-border {
  width: 100%;
  height: 10px;
  flex-grow: 0;
  margin: 61px 0 0;
  background-image: linear-gradient(to right, #003694, #832ad0);
  position: absolute;
  bottom: 0;
}

@media (max-width: 576px) {
  .link-title {
    text-align: center !important;
  }
}

.link-cursor {
  position: absolute;
  right: -50px;
  bottom: -40px;
  z-index: 999;
}
@media (max-width: 576px) {
  .link-cursor {
    right: -30px;
  }
}

.link-cta {
  width: 18rem;
}

/* —————————————————————————————————————————————
   1. Regras gerais (desktop/tablet)
   (mantém 3 slides visíveis, espaço de 20px e não vaza)
   ————————————————————————————————————————————— */
.swiper-container {
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
}

.mySwiper .swiper-slide:last-child {
  margin-right: 0;
}

.mySwiper .swiper-slide img {
  object-fit: cover;
  height: 450px;
  border-radius: 15px; /* mantém os cantos arredondados */
  display: block;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

.swiper-pagination {
  display: none;
}

@media (max-width: 768px) {
  /* Cada slide ocupa agora 100% do contêiner */
  .mySwiper .swiper-slide {
    flex: 0 0 100%;
    margin-right: 0;
  }
}
.pref-box {
  background: url("../../../assets/img/links/7_bg-pref.webp") center/cover no-repeat;
  height: 250px;
}

.position-relative {
  position: relative;
}

.link-nl-box {
  background-image: url("/assets/img/Pop-up/BG-pop-up.webp") !important;
  background-position: center;
  border-radius: 15px;
  padding: 20px;
  width: 47rem;
  height: 27rem;
  background-size: cover;
  z-index: 3;
} 



/* Cria o overlay colorido por cima da imagem */
.link-nl-box::before {

  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Aqui definimos a cor e a opacidade do overlay. Por exemplo, um preto semitransparente: */
   background-color: rgba(0, 53, 138, 0.4588235294)!important;
  /* Se quiseres outro tom (por exemplo, um verde semitransparente), podes fazer: */
  /* background-color: rgba(34, 139, 34, 0.6); */
  z-index: -1; /* fica atrás do conteúdo interno (.inner-box) mas acima do background-image */
}