.banco-de-sementes {
  width: 100%;
  padding: 48px 20px 40px;
  background: var(--color-bg);
}

.banco-de-sementes__container {
  width: min(1260px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.banco-de-sementes__header {
  margin-bottom: 32px;
}

.banco-de-sementes__title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: var(--color-text);
  margin: 0 0 10px;
  text-transform: uppercase;
}

.banco-de-sementes__subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text-mid);
  margin: 0;
}

.banco-de-sementes__viewport {
  overflow: hidden;
  position: relative;
}

.banco-de-sementes__track {
  display: flex;
  align-items: center;
  gap: 0;
  transition: transform 0.65s ease-in-out;
  width: max-content;
  min-width: 100%;
  cursor: grab;
}

/* Marquee desktop */
.banco-de-sementes--marquee .banco-de-sementes__track {
  transition: none;
  animation: bancoMarquee var(--marquee-duration, 20s) linear infinite;
}

@keyframes bancoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * var(--marquee-distance, 100%))); }
}

.banco-de-sementes--marquee .banco-de-sementes__dots {
  display: none;
}

.banco-de-sementes.is-grabbing .banco-de-sementes__track {
  cursor: grabbing;
}

/* ---- SLIDES (mantém a lógica original: 5 / 4 / 3 / 2 por vez) ---- */

.banco-de-sementes__slide {
  flex: 0 0 calc((100% - (20px * 4)) / 5);
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* LOGOS: inteiros, centralizados, sem cortar */

.banco-de-sementes__logo {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banco-de-sementes__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.banco-de-sementes__name {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-mid);
  margin: 0;
}

/* ---- DOTS: sempre redondos ---- */

.banco-de-sementes__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.banco-de-sementes__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%; /* redondinho */
  background: var(--color-neutral-300);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.banco-de-sementes__dot.is-active {
  background: var(--color-dark); /* pontinho preto */
  transform: scale(1.15); /* só um leve destaque */
}

/* ---- RESPONSIVO ---- */

@media (max-width: 1024px) {
  .banco-de-sementes__slide {
    flex: 0 0 calc((100% - (20px * 3)) / 4);
  }
}

@media (max-width: 900px) {
  .banco-de-sementes {
    padding: 36px 16px 32px;
  }

  .banco-de-sementes__container {
    width: 100%;
  }

  .banco-de-sementes__title {
    font-size: 26px;
  }

  .banco-de-sementes__subtitle {
    font-size: 15px;
  }

  .banco-de-sementes__slide {
    flex: 0 0 calc((100% - (20px * 2)) / 3);
  }

  .banco-de-sementes__logo img {
    object-fit: contain;
  }
}

@media (max-width: 640px) {
  /* 2 logos por vez, igual seu print */
  .banco-de-sementes__slide {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .banco-de-sementes__logo {
    width: 150px; /* deixa maiorzinho no mobile */
    height: 150px;
  }
}
