/* Aral Instagram Carousel — estilo clean */

.aral-ig-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 8px 0 4px;
}

.aral-ig-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 4px;
}

.aral-ig-carousel::-webkit-scrollbar {
  height: 6px;
}
.aral-ig-carousel::-webkit-scrollbar-track {
  background: transparent;
}
.aral-ig-carousel::-webkit-scrollbar-thumb {
  background: rgba(18, 58, 93, 0.3); /* azul Aral bem suave */
  border-radius: 999px;
}

.aral-ig-slide {
  flex: 0 0 46%;
  max-width: 260px;
  border-radius: 18px;
  overflow: hidden;
  background: #111827;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  text-decoration: none;
}

.aral-ig-media {
  width: 100%;
  padding-bottom: 120%; /* aproximado 4:5 */
  background-size: cover;
  background-position: center;
}

@media (min-width: 640px) {
  .aral-ig-slide {
    flex-basis: 30%;
  }
}

@media (min-width: 1024px) {
  .aral-ig-slide {
    flex-basis: 22%;
  }
}

/* Botões de navegação */
.aral-ig-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: rgba(3, 18, 37, 0.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.aral-ig-prev { left: 4px; }
.aral-ig-next { right: 4px; }

.aral-ig-nav:hover {
  background: rgba(18, 58, 93, 1);
  transform: translateY(-50%) scale(1.05);
}

@media (max-width: 640px) {
  .aral-ig-nav {
    display: none; /* no mobile, o scroll com o dedo já resolve */
  }
}
