/* ============================================
   FEATURES CARDS SECTION - NetApp Storage LP
   Cards com Swiper para funcionalidades
   ============================================ */

.features-cards-section {
  background-image: url("../images/tabs-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: var(--spacing) 0;
  position: relative;
  overflow: hidden;
}

.features-cards-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.features-cards-section .container {
  position: relative;
  z-index: 1;
}

.features-cards-section__header {
  text-align: left;
  margin-bottom: 3rem;
}

.features-cards-section__title {
  font-family: var(--font-gotham-bold);
  font-size: 2.25rem;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.features-cards-section__intro {
  font-family: var(--font-gotham-book);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--white);
  max-width: 50rem;
  margin: 0;
  text-align: left;
}

.features-cards-section__intro p + p {
  margin-top: 1rem;
}

/* Swiper Container */
.features-cards-swiper {
  margin-top: 2rem;
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}

.features-cards-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.features-cards-swiper .swiper-slide {
  height: auto;
  display: flex;
  width: auto;
}

.features-card {
  width: 100%;
  height: auto;
  display: block;
}

.features-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Navigation Buttons */
.features-cards-navigation {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.features-cards-button-prev,
.features-cards-button-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.features-cards-button-prev:hover,
.features-cards-button-next:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.features-cards-button-prev.swiper-button-disabled,
.features-cards-button-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.features-cards-button-prev svg,
.features-cards-button-next svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}

/* Pagination - Hidden */
.features-cards-pagination {
  display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
  .features-cards-section__title {
    font-size: 1.75rem;
  }

  .features-cards-section__intro {
    font-size: 0.875rem;
  }

}


