/* Estilos para indicação de rolagem na seção de promoção - Mobile */
@media only screen and (max-width: 991px) {
  /* Esconder setas de navegação no mobile */
  .product-slider-active.owl-carousel .owl-nav {
    display: none !important;
  }
  
  /* Indicador de rolagem */
  .scroll-indicator-mobile {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 0;
  }
  .scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e70127;
    font-size: 13px;
    font-weight: 500;
    animation: pulse 2s infinite;
  }
  .scroll-hint i {
    font-size: 16px;
    animation: slide-horizontal 1.5s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.6;
    }
  }
  @keyframes slide-horizontal {
    0%, 100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(5px);
    }
  }
  
  /* Estilizar dots do Owl Carousel - Design profissional */
  .product-slider-active.owl-carousel .owl-dots,
  .product-slider-active.owl-carousel .owl-dots.disabled,
  .product-area .product-slider-active.owl-carousel .owl-dots {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 20px !important;
    padding: 15px 0 20px !important;
    position: relative !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: 40px !important;
  }
  .product-slider-active.owl-carousel .owl-dots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, #e0e0e0, transparent);
  }
  .product-slider-active.owl-carousel .owl-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d0d0d0 !important;
    border: 2px solid transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .product-slider-active.owl-carousel .owl-dots button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(231, 1, 39, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .product-slider-active.owl-carousel .owl-dots button:hover {
    background-color: #e70127 !important;
    transform: scale(1.2);
    box-shadow: 0 3px 8px rgba(231, 1, 39, 0.3);
  }
  .product-slider-active.owl-carousel .owl-dots button:hover::after {
    width: 20px;
    height: 20px;
  }
  .product-slider-active.owl-carousel .owl-dots button.active {
    background-color: #e70127 !important;
    width: 12px;
    height: 12px;
    border-color: rgba(231, 1, 39, 0.3);
    box-shadow: 0 0 0 3px rgba(231, 1, 39, 0.15), 0 3px 10px rgba(231, 1, 39, 0.4);
    transform: scale(1.1);
  }
  .product-slider-active.owl-carousel .owl-dots button.active::after {
    width: 24px;
    height: 24px;
  }
}
@media only screen and (min-width: 992px) {
  .scroll-indicator-mobile {
    display: none !important;
  }
  .product-slider-active.owl-carousel .owl-nav {
    display: none !important;
  }
  .product-slider-active.owl-carousel .owl-dots {
    display: none !important;
  }
}

