.section-duvidas {
  background-color: var(--bg-green);
  padding: clamp(60px, 10vw, 100px) 0;
  position: relative;
  overflow-x: clip;
  z-index: 4;
}

/* Mobile: imagem inline ao lado do título */
.duvidas-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.duvidas-minions {
  height: clamp(95px, 18vw, 125px);
  width: auto;
  flex-shrink: 0;
}

.duvidas-title {
  color: var(--bg-yellow);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-align: left;
  margin-bottom: 0;
}

/* Desktop: imagem grande posicionada absolutamente na borda superior da seção */
@media (min-width: 768px) {
  .section-duvidas {
    padding-top: clamp(180px, 22vw, 250px);
  }

  .duvidas-minions {
    position: absolute;
    top: 0;
    left: clamp(0.5rem, 4vw, 7rem);
    height: clamp(220px, 32vw, 380px);
    transform: translateY(-45%);
    flex-shrink: unset;
  }

  .duvidas-title {
    text-align: center;
    margin-bottom: 0;
  }
}

#accordionDuvidas {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-duvidas .accordion-item {
  background-color: transparent;
  border: 1px solid rgba(255 255 255 / 0.2);
  border-radius: 8px !important;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.section-duvidas .accordion-button {
  background-color: rgba(255 255 255 / 0.08);
  color: #fff;
  font-weight: 600;
  font-size: clamp(0.875rem, 2vw, 1rem);
}

.section-duvidas .accordion-button:not(.collapsed) {
  background-color: var(--bg-yellow);
  color: var(--bg-green);
  box-shadow: none;
}

/* Seta branca quando fechado */
.section-duvidas .accordion-button::after {
  filter: brightness(0) invert(1);
}

/* Seta escura sobre o amarelo quando aberto */
.section-duvidas .accordion-button:not(.collapsed)::after {
  filter: none;
}

.section-duvidas .accordion-body {
  background-color: rgba(255 255 255 / 0.05);
  color: rgba(255 255 255 / 0.9);
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  line-height: 1.7;
}

.section-duvidas .accordion-collapse {
  border-top: 1px solid rgba(255 255 255 / 0.15);
}

@media (min-width: 1024px) and (max-width: 1440px) {
  .duvidas-minions {
    transform: translateY(-30%);
  }
}

@media (min-width: 1920px) {
  .section-duvidas {
    padding-top: clamp(260px, 24vw, 380px);
    padding-bottom: clamp(80px, 10vw, 140px);
  }

  .duvidas-minions {
    height: clamp(360px, 28vw, 540px);
    left: clamp(1rem, 5vw, 10rem);
  }

  .duvidas-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
  }

  #accordionDuvidas {
    max-width: 1100px;
  }

  .section-duvidas .accordion-button {
    font-size: clamp(1rem, 1.1vw, 1.3rem);
  }

  .section-duvidas .accordion-body {
    font-size: clamp(0.95rem, 0.95vw, 1.15rem);
  }
}
