#template.fullbanner {
  position: relative;
  overflow: hidden;
}
#template.fullbanner .swiper-slide {
  min-height: 764px;
  border-radius: 16px;
  overflow: hidden;
}
#template.fullbanner .texto__wrapper {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 600px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 0 48px;
  color: #ffff;
}
#template.fullbanner .texto__wrapper .cta {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: fit-content;
  padding: 8px 32px;
  border-radius: 8px;
  font-weight: 500;
  background: #fff;
  color: var(--clr-primary);
  transition: all 0.3s ease;
  transform-origin: left top;
}
#template.fullbanner .texto__wrapper .cta:hover {
  background: var(--clr-primary-hover);
  color: #fff;
  transform: scale(1.05);
}
#template.fullbanner img {
  position: absolute;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
#template.fullbanner .swiper-pagination-bullet,
#template.fullbanner .swiper-pagination-bullet-active {
  width: 48px;
  height: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
#template.fullbanner .swiper-pagination-bullet {
  background-color: #fff;
  border: 1px solid var(--clr-primary-hover);
  opacity: 0.5;
}
#template.fullbanner .swiper-pagination-bullet-active {
  background-color: var(--clr-primary);
  opacity: 1;
}
#template.fullbanner .swiper-pagination-bullet:hover {
  background-color: var(--clr-primary-hover);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  #template.fullbanner .swiper-slide {
    min-height: 500px;
    border-radius: 16px;
    overflow: hidden;
  }
  #template.fullbanner .texto__wrapper {
    max-width: 100%;
    justify-content: end;
    gap: 16px;
    padding: 16px;
    color: #ffff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  }
  #template.fullbanner .texto__wrapper .cta {
    width: 100%;
    padding: 8px 16px;
    margin-bottom: 32px;
    text-align: center;
  }
}