      .atrativos-carousel {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding: 0.25rem 0 1rem;
        scrollbar-width: none;
      }

      .atrativos-carousel::-webkit-scrollbar {
        display: none;
      }

      .atrativo-slide {
        flex: 0 0 100%;
        scroll-snap-align: start;
      }

      @media (min-width: 768px) {
        .atrativo-slide {
          flex-basis: calc(50% - 0.5rem);
        }
      }

      @media (min-width: 1024px) {
        .atrativo-slide {
          flex-basis: calc(33.333% - 0.75rem);
        }
      }

      .carousel-nav {
        position: absolute;
        top: 50%;
        z-index: 20;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .carousel-nav svg {
        width: 22px;
        height: 22px;
        color: var(--color-secondary-600);
      }

      .carousel-nav-left {
        left: -8px;
      }

      .carousel-nav-right {
        right: -8px;
      }

      @media (max-width: 767px) {
        .carousel-nav-left {
          left: 4px;
        }

        .carousel-nav-right {
          right: 4px;
        }
      }

      @keyframes appear {
        from {
          opacity: 0;
          transform: scale(0.95);
        }

        to {
          opacity: 1;
          transform: scale(1);
        }
      }

      @keyframes appear-view {
        from {
          opacity: 0;
          transform: translateY(40px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .historico-card {
        animation: appear-view linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 20%;
      }
      

      @supports not (animation-timeline: view()) {
        .historico-card {
          animation: none;
          opacity: 1;
        }
      }

      .scroll-reveal{
        animation: appear-view linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 20%;
      }

      @supports not (animation-timeline: view()){
        .scroll-reveal{
          animation: none;
          opacity: 1;
        }
      }