.main-autos{
    color: var(--c-scale-80);
    .slider-wrapper{
        position: relative;
    }
    @media (max-width: 819px){
        .slider-wrapper {
            height: 300px;
            img {
                height: 100%;
            }
        }
    }
    .main-slider-person{
        position: relative;
        h2{
            font-size: 1.7em;
            @media (min-width:820px){
                font-size: 3em;
                max-width: 50%;
            }
        }
        h3{
            @media (max-width: 819px){
                font-size: 1.1em;
                max-width: 70%;
            }
        }
        .nivo-caption {
            transform: translateY(-20%);
        }
    }
    .cont-feel-card {
        card{
            @media (min-width:820px){
                max-width: 380px;
            }
        }
    }

    .item-auto-info{
        svg{
            padding: 6px;
            background: var(--c-primary-20);
            border-radius: 20px;
        }
    }
    .content-list-paquetes a{
        box-shadow: var(--box-sh);
        border-radius: 20px;
        img {
            border-radius: 20px 20px 0 0;
        }
    } 
}

/* Carrusel Vertical */

.carrusel-scroll-container {
    width: 100%;
    position: relative;
}

.carrusel-section {
    width: 100%;
    height: 300vh;
    position: relative;
    /* margin-left: calc(-50vw + 50%); */
}

.carrusel-section-content {
    position: sticky;
    top: 0;
    /* width: 100vw; */
    height: 100vh;
    padding: 2.5rem 3rem ;
    transition: all 0.05s ease-out;
    .img-items{
        width: 100%;
        @media (min-width:820px){
            width: 520px;
            margin-left: -100px;
        }
    }
    .cont-img-logos img{
        width: 100px;
        @media (min-width:820px){
            width: 130px;
        }
    }
    h2{
        font-size: 2.6em;
        text-align: center;
        font-weight: 700;
        margin-bottom: 1rem;
        opacity: 0;
        transform: translateY(50px);
        hyphens: auto;
        overflow-wrap: break-word;
    }
    p{
        font-size: clamp(2rem, 1.5vw, 3rem);
        font-weight: 300;
        margin-bottom: 2rem;
        text-align: center;
        opacity: 0;
        transform: translateY(30px);
    }
    .feature-grid {
        max-width: 1200px;
        opacity: 0;
        transform: translateY(40px);
    }
    @media (min-width:820px){
        text-align: center;
        h2{
            font-size: 4em;
            text-align: left;
        }
        p{
            text-align: left;
        }
    }
}

/* Sección 1 - Estilo carrusel */
.carrusel-section-1 {
    background: var(--c-blanco);
    color: var(--c-scale-90);
}

.carrusel-section-1 .description {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    max-width: 800px;
    opacity: 0;
    transform: translateY(20px);
    color: #a1a1a6;
}

/* Sección 2 - Producto */
.carrusel-section-2 {
    background: linear-gradient(135deg, var(--c-scale-100) 0%, var(--c-scale-60) 100%);
    color: var(--c-blanco);
}

/* Sección 3 - Características */
.carrusel-section-3 {
    background: var(--c-scale-10);
    color: var(--c-scale-90);
}

.carrusel-section-3 .feature-title {
    font-size: 3.5em;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(-30px);
}

.carrusel-section-3 

.feature-item {
    transform: translateY(20px);
    opacity: 0;
}

/* Indicador de scroll */
.carrusel-scroll-indicator {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carrusel-scroll-indicator.visible {
    opacity: 1;
}

.carrusel-scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    margin: 15px 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carrusel-scroll-dot.active {
    background: #fff;
    transform: scale(1.5);
}

/* Progress bar */
.carrusel-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    z-index: 1001;
    transform-origin: left;
    transform: scaleX(0);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carrusel-progress-bar.visible {
    opacity: 1;
}

/* Estilos para cuando está fuera del viewport */
.carrusel-scroll-container:not(.active) .carrusel-scroll-indicator,
.carrusel-scroll-container:not(.active) .carrusel-progress-bar {
    display: none;
}

@media (max-width: 768px) {
    .carrusel-section-content {
        padding: 1rem;
    }
    
    .carrusel-scroll-indicator {
        right: 15px;
    }
    
    .carrusel-section {
        margin-left: calc(-50vw + 50%);
    }
}