/* ===============================
   CONTAINER PRINCIPAL
================================ */
.help-tutorial {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===============================
   WRAPPER E SLIDES
================================ */
.help-slides-wrapper {
  overflow: hidden;
  width: 100%;
}

.help-slides {
  display: flex;
  transition: transform 0.4s ease;
}

/* ===============================
   SLIDE
================================ */
.help-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start; /* IMPORTANTE */
}

/* ===============================
   IMAGEM
   ✔ 75% DO CONTAINER
   ✔ ALTURA LIVRE
   ✔ SEM CORTE
================================ */
.help-image {
  width: 45%;
  max-width: 900px;

  /* NUNCA limite altura */
  height: auto;

  display: flex;
  justify-content: center;
  align-items: center;
}

.help-image img {
  width: 100%;
  height: auto;          /* ESSENCIAL */
  max-width: 100%;
  display: block;

  object-fit: contain;  /* Segurança extra */
}

/* ===============================
   SETAS
================================ */
.help-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  font-weight: 700;
  line-height: 1;

  color: #49819a;                 /* seta azure */
  background: rgba(0, 0, 0, 0); /* branco */
  border: 2px solid #49819a;      /* moldura branca interna */
  border-radius: 50%;

  cursor: pointer;
  user-select: none;

  z-index: 999;

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);

  transition: 
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.help-arrow.prev {
  left: 8px;
}

.help-arrow.next {
  right: 8px;
}

/* Hover simples (opcional) */
.help-arrow:hover {
  background: #000;
  color: #fff;
}

/* ===============================
   DOTS
================================ */
.help-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0;
}

.help-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.help-dot.active {
  background: #000;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 767px) {
  .help-image {
    width: 90%;
  }

  .help-arrow {
    display: none;
  }
}
