.rdt-slider-section,
.rdt-slider-section * {
  box-sizing: border-box;
}

.rdt-slider-section {
  width: 100%;
  background: transparent;
  padding: 0;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  overflow: visible;
  position: relative;
  z-index: 5;
}

.rdt-slider-section .rdt-slider-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: transparent;
  overflow: visible;
  padding: 0 10px;
}

.rdt-slider-section .rdt-slider-arrow {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #1f3f7a;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  position: relative;
  z-index: 20;
}

.rdt-slider-section .rdt-slider-arrow:hover {
  transform: scale(1.06);
}

.rdt-slider-section .rdt-slider-clip {
  width: 1080px; /* 5 cards de 200 + 4 gaps de 20 */
  overflow: hidden;
  background: transparent;
  padding: 32px 0 28px;
  flex-shrink: 0;
}

.rdt-slider-section .rdt-slider-track {
  width: 100%;
  background: transparent;
  overflow: visible;
}

.rdt-slider-section .rdt-slider-row {
  display: flex;
  gap: 20px;
  transition: transform 0.45s ease;
  will-change: transform;
  background: transparent;
}

.rdt-slider-section .rdt-slide {
  flex: 0 0 auto;
  overflow: visible;
}

.rdt-slider-section .rdt-card {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 24px rgba(37, 61, 109, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 22px 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rdt-slider-section .rdt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(37, 61, 109, 0.14);
}

.rdt-slider-section .rdt-card-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 16px;
}

.rdt-slider-section .rdt-card h3 {
  margin: 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
  color: #2a4d8f;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.rdt-slider-section .rdt-slider-dots {
  display: none;
}

/* tablet */
@media (max-width: 1100px) {
  .rdt-slider-section .rdt-slider-clip {
    width: 880px; /* 5 cards de 160 + 4 gaps de 20 */
    padding: 24px 0 20px;
  }

  .rdt-slider-section .rdt-card {
    width: 160px;
    height: 160px;
    border-radius: 18px;
    padding: 18px 14px;
  }

  .rdt-slider-section .rdt-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .rdt-slider-section .rdt-card h3 {
    font-size: 12px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .rdt-slider-section .rdt-slider-container {
    gap: 8px;
    padding: 0 6px;
  }

  .rdt-slider-section .rdt-slider-arrow {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 20px;
  }

  .rdt-slider-section .rdt-slider-clip {
    width: 260px; /* 2 cards */
    padding: 16px 0 16px;
  }

  .rdt-slider-section .rdt-slider-row {
    gap: 12px;
  }

  .rdt-slider-section .rdt-card {
    width: 124px;
    height: 124px;
    border-radius: 16px;
    padding: 12px 8px;
  }

  .rdt-slider-section .rdt-card-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 8px;
  }

  .rdt-slider-section .rdt-card h3 {
    font-size: 10px;
    line-height: 1.2;
  }
}