#homeBannersSection {
  width: 100%;
  max-width: 900px;
  margin: 18px auto 30px;
  position: relative;
}

#homeBannersSection[aria-busy="true"] {
  min-height: 190px;
}

#homeBannersSection .home-banners-skeleton,
#homeBannersSection .home-banner-card {
  min-height: 190px;
  border-radius: 16px;
  overflow: hidden;
}

#homeBannersSection .home-banners-skeleton {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  padding: 18px;
  background: #071526;
}

#homeBannersSection .home-banners-skeleton-line {
  display: block;
  height: 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.13);
  animation: home-banner-skeleton-pulse 1.4s ease-in-out infinite;
}

#homeBannersSection .home-banners-skeleton-line.is-badge { width: 74px; height: 9px; }
#homeBannersSection .home-banners-skeleton-line.is-title { width: min(62%, 320px); height: 26px; }
#homeBannersSection .home-banners-skeleton-line.is-text { width: min(68%, 390px); }
#homeBannersSection .home-banners-skeleton-line.is-button { width: 132px; height: 44px; margin-top: 4px; }

#homeBannersSection .splide__track {
  border-radius: 16px;
}

#homeBannersSection .home-banner-card {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: stretch;
  background: #071526;
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(7, 21, 38, 0.18);
}

#homeBannersSection .home-banner-picture,
#homeBannersSection .home-banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#homeBannersSection .home-banner-image {
  display: block;
  object-fit: cover;
  object-position: center;
}

#homeBannersSection .home-banner-copy {
  position: relative;
  z-index: 1;
  width: 64%;
  max-width: 570px;
  min-height: 190px;
  padding: 15px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#homeBannersSection .home-banner-badge {
  display: block;
  margin-bottom: 7px;
  color: #9fc5ff;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

#homeBannersSection .home-banner-title {
  display: -webkit-box;
  max-width: 470px;
  margin: 0 0 7px;
  overflow: hidden;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 900;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

#homeBannersSection .home-banner-description {
  display: -webkit-box;
  max-width: 500px;
  margin: 0 0 11px;
  overflow: hidden;
  color: #d7e3f4;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#homeBannersSection .home-banner-sponsored {
  box-shadow: 0 18px 38px rgba(7, 21, 38, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

#homeBannersSection .home-banner-sponsored .home-banner-badge::before {
  content: "Conteúdo patrocinado";
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

#homeBannersSection .home-banner-partner {
  margin: -5px 0 9px;
  color: #e7eef8;
  font-size: 11px;
  font-weight: 700;
}

#homeBannersSection .home-banner-cta {
  min-height: 44px;
  max-width: 100%;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #2476ff;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(36, 118, 255, 0.28);
}

#homeBannersSection .home-banner-cta ion-icon {
  flex: 0 0 auto;
  font-size: 17px;
}

#homeBannersSection .home-banner-cta:hover,
#homeBannersSection .home-banner-cta:focus-visible {
  color: #ffffff;
  background: #1768eb;
  outline: 3px solid rgba(159, 197, 255, 0.72);
  outline-offset: 3px;
}

#homeBannersSection .splide__pagination {
  bottom: -20px;
}

#homeBannersSection .splide__pagination__page {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #bdc9d8;
  opacity: 1;
  transition: width 180ms ease, background-color 180ms ease;
}

#homeBannersSection .splide__pagination__page.is-active {
  width: 22px;
  border-radius: 999px;
  transform: none;
  background: #2476ff;
}

#homeBannersSection .splide__pagination__page:focus-visible,
#homeBannersSection .splide__arrow:focus-visible {
  outline: 3px solid rgba(36, 118, 255, 0.42);
  outline-offset: 3px;
}

#homeBannersSection .splide__arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 21, 38, 0.82);
  opacity: 1;
}

#homeBannersSection .splide__arrow svg {
  fill: #ffffff;
}

@media (min-width: 768px) {
  #homeBannersSection {
    margin-top: 22px;
    margin-bottom: 34px;
  }

  #homeBannersSection[aria-busy="true"],
  #homeBannersSection .home-banners-skeleton,
  #homeBannersSection .home-banner-card,
  #homeBannersSection .home-banner-copy {
    min-height: 260px;
  }

  #homeBannersSection .home-banners-skeleton,
  #homeBannersSection .home-banner-copy {
    padding: 28px 34px;
  }

  #homeBannersSection .home-banner-copy {
    width: 58%;
  }

  #homeBannersSection .home-banner-badge {
    margin-bottom: 12px;
    font-size: 12px;
  }

  #homeBannersSection .home-banner-title {
    margin-bottom: 10px;
    font-size: 28px;
    line-height: 1.12;
    -webkit-line-clamp: 2;
  }

  #homeBannersSection .home-banner-description {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.45;
  }

  #homeBannersSection .home-banner-cta {
    min-height: 46px;
    padding: 0 18px;
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  #homeBannersSection .splide__arrow--prev {
    left: -21px;
  }

  #homeBannersSection .splide__arrow--next {
    right: -21px;
  }
}

@media (max-width: 991.98px) {
  #homeBannersSection .splide__arrow {
    display: none;
  }
}

@media (max-width: 374.98px) {
  #homeBannersSection .home-banner-copy {
    width: 74%;
    padding-right: 10px;
  }

  #homeBannersSection .home-banner-title {
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.12;
    -webkit-line-clamp: 4;
  }

  #homeBannersSection .home-banner-description {
    margin-bottom: 8px;
    font-size: 12px;
    -webkit-line-clamp: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  #homeBannersSection .home-banners-skeleton-line,
  #homeBannersSection .splide__pagination__page,
  #homeBannersSection .home-banner-cta {
    animation: none;
    transition: none;
  }
}

@keyframes home-banner-skeleton-pulse {
  0%, 100% { opacity: 0.48; }
  50% { opacity: 0.92; }
}
