.carousel-container {
  position: relative;
  width: 80%;
  max-width: 500px;
  margin: auto;
  overflow: hidden;
  background: white;
  color: black;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  padding: 20px;
  box-sizing: border-box;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
  touch-action: pan-y;
  flex-direction: row;
}

.card-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box; 
  padding: 24px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  user-select: none;
  flex-direction: column;
}

@media (max-width: 600px) {
  .card-slide {
    padding: 20px 16px;
    font-size: 1.3rem;
  }

  .arrow {
    font-size: 20px;
    width: 40px;
    height: 40px;
  }
}

/* Indicadores (bolinhas) */
.carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-grow: 1;
}

.carousel-indicators .dot {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  transition: background-color 0.3s;
  cursor: pointer;
}

.carousel-indicators .dot.active {
  background: #f1751c;
}

/* Setas */
.arrow {
  border: none;
  font-size: 24px;
  width: 48px;
  height: 48px;
  padding: 0;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.2s;
  flex-shrink: 0;
  background: #f1751c;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow:hover {
  background: #d6691c;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.arrow:active {
  transform: scale(0.97);
  background-color: #d6691c;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Botão final */
#finishOnboarding {
  margin-top: 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
}

#finishOnboarding:hover {
  background-color: #45a049;
}

.onboarding-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
}

.carousel-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  padding: 0 12px;
  box-sizing: border-box;
}