.hero-animated-slides-main-wrapper {
    position: relative;
    width: 100%;
    height: 685px;
    max-height: 685px;
    background-color: #000;
    padding: var(--spacing-07, 24px);
    box-sizing: border-box;
    overflow: hidden;
    perspective: 1000px;
}

.hero-animated-slides-main-wrapper .hero-layer-base {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-animated-slides-main-wrapper .hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform-style: preserve-3d;
    border-radius: var(--borderRadius-lg, 32px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
}

.hero-animated-slides-main-wrapper .hero-slider-container.gsap-ready {
    opacity: 1;
    visibility: visible;
}

.hero-animated-slides-main-wrapper .hero-train {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-animated-slides-main-wrapper .hero-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    overflow: hidden;
    transform-origin: center center;
    border-radius: var(--borderRadius-lg, 32px);
    background-color: #000;
}

.hero-animated-slides-main-wrapper .hero-slide-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-animated-slides-main-wrapper .hero-content-constrainer {
    position: relative;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-animated-slides-main-wrapper .hero-slider-container>.hero-content-constrainer {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50;
}

.hero-animated-slides-main-wrapper .hero-content-constrainer>* {
    pointer-events: auto;
}

@media (min-width: 1201px) {
    .hero-animated-slides-main-wrapper .hero-content-constrainer {
        max-width: 1200px;
        margin: 0 auto;
    }

    .hero-animated-slides-main-wrapper .hero-slider-container>.hero-content-constrainer {
        left: 50%;
        transform: translateX(-50%);
    }
}

@keyframes smoothImageLoad {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-animated-slides-main-wrapper .hero-img-bg {
    position: absolute;
    top: 0;
    left: -4%;
    width: 108%;
    height: 100%;
    background-size: cover;
    background-position: center;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    animation: smoothImageLoad 1.5s ease-in-out forwards;
    /* Suaviza la carga asíncrona de imágenes */
}

.hero-animated-slides-main-wrapper .hero-layer-bottom .hero-img-bg {
    z-index: 1;
    background: var(--bg-bottom) 50% / cover no-repeat #000;
}

.hero-animated-slides-main-wrapper .hero-layer-top {
    z-index: 2;
}

.hero-animated-slides-main-wrapper .hero-layer-top .hero-img-bg {
    background: var(--bg-top) 50% / cover no-repeat transparent;
}

.hero-animated-slides-main-wrapper .hero-layer-gradient {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.00) 72.6%) !important;
    z-index: 10 !important;
    opacity: 1 !important;
    display: block !important;
}

.hero-animated-slides-main-wrapper .hero-layer-fade {
    background-color: #000;
    z-index: 15;
}

.hero-animated-slides-main-wrapper .has-content-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 20;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.hero-animated-slides-main-wrapper .hero-animated-content {
    position: relative;
    z-index: 10;
    color: white;
    max-width: 572px;
    margin-left: 54px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.hero-animated-slides-main-wrapper .hero-animated-title {
    color: var(--text-general-inverted, #FFF);
    font-family: var(--font-family-primary, Poppins);
    font-size: var(--font-size-h1, 72px);
    font-weight: 400;
    line-height: var(--font-lineHeight-h1, 80px);
    text-transform: uppercase;
    margin: 0;
}

.hero-animated-slides-main-wrapper .hero-animated-title strong {
    font-weight: 700;
}

.hero-animated-slides-main-wrapper .hero-animated-subtitle-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-animated-slides-main-wrapper .hero-animated-subtitle {
    color: var(--text-general-inverted, #FFF);
    font-family: var(--font-family-primary, Poppins);
    font-size: var(--font-size-h6, 20px);
    font-weight: 400;
    line-height: var(--font-lineHeight-h6, 28px);
    margin: 0;
}

.hero-animated-slides-main-wrapper .hero-animated-subtitle strong {
    font-weight: 700;
}

.hero-animated-slides-main-wrapper .hero-animated-qr {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
}

.hero-animated-slides-main-wrapper .hero-animated-btn {
    display: flex;
    min-height: 44px;
    padding: var(--spacing-05, 12px) var(--spacing-07, 24px);
    justify-content: center;
    align-items: center;
    gap: var(--spacing-04, 8px);
    border-radius: var(--borderRadius-full, 500px);
    background: var(--interaction-primary-default, #0F6FF5);
    color: var(--interaction-primary-content, #FFF);
    text-align: center;
    font-family: var(--font-family-primary, Poppins);
    font-size: var(--font-size-body3, 14px);
    font-weight: 600;
    line-height: var(--font-lineHeight-body3, 20px);
    text-decoration: none;
    transition: background-color 0.3s;
}

.hero-animated-slides-main-wrapper .hero-animated-btn:hover {
    background: var(--interaction-pagination-primary-hover, #0853BB);
    color: var(--interaction-pagination-primary-content, #FFF);
    text-decoration: none;
}

.hero-animated-slides-main-wrapper .hero-animated-btn:focus {
    border: var(--stroke-thick, 2px) solid var(--interaction-pagination-primary-accent, #D8E8FF);
    background: var(--interaction-pagination-primary-pressed, #05377D);
    color: var(--interaction-pagination-primary-content, #FFF);
    text-decoration: none;

}

.hero-animated-slides-main-wrapper .hero-animated-app-downloads {
    display: none;
}

.hero-animated-slides-main-wrapper .hero-animated-cta-icon-wrapper {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 30;
}

.hero-animated-slides-main-wrapper .hero-animated-cta-icon-wrapper a {
    display: block;
    transition: transform 0.3s ease;
    width: 44px;
    height: 44px;
}

.hero-animated-slides-main-wrapper .hero-controls-wrapper {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: var(--spacing-05, 12px);
}

.hero-animated-slides-main-wrapper .hero-pagination {
    display: flex;
    padding: var(--spacing-07, 24px);
    align-items: flex-end;
    gap: var(--spacing-05, 12px);
    border-radius: var(--borderRadius-xl, 80px);
    border: 1px solid rgba(255, 255, 255, 0.40);
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    transform: translateZ(0);
    /* Forzar GPU */
}

.hero-animated-slides-main-wrapper .hero-bullet {
    position: relative;
    width: 14px;
    height: 14px;
    background: var(--color-azulElectrico-200, #87B7FA);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: width 0.4s;
}

.hero-animated-slides-main-wrapper .hero-bullet.active {
    width: 92px;
}

.hero-animated-slides-main-wrapper .hero-bullet-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--color-azulElectrico-500, #0F6FF5);
    border-radius: 14px;
}

.hero-animated-slides-main-wrapper .hero-navigation {
    display: flex;
    padding: 21px var(--spacing-07, 24px);
    align-items: center;
    gap: var(--spacing-5, 16px);
    border-radius: var(--border-radius-m, 32px);
    border: 1px solid rgba(255, 255, 255, 0.40);
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    transform: translateZ(0);
    /* Forzar GPU */
}

.hero-animated-slides-main-wrapper .hero-nav-separator {
    width: 0.5px;
    height: 19.914px;
    background: rgba(255, 255, 255, 0.50);
}

.hero-animated-slides-main-wrapper .hero-nav-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.hero-animated-slides-main-wrapper .hero-nav-btn svg {
    width: 10px;
    height: 19px;
}

.hero-animated-slides-main-wrapper .hero-nav-btn.disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 1089px) {
    .hero-animated-slides-main-wrapper {
        height: 843px;
        max-height: 843px;
        padding: var(--spacing-07, 24px) 0;
        overflow: hidden;
    }

    .hero-animated-slides-main-wrapper .hero-slider-container {
        overflow: visible !important;
        width: 100%;
        border-radius: 0;
    }

    .hero-animated-slides-main-wrapper .hero-train {
        display: flex;
        width: auto;
        position: relative;
        left: 0;
    }

    .hero-animated-slides-main-wrapper .hero-slide-item {
        position: relative;
        flex: 0 0 90%;
        height: 100%;
        left: auto;
        margin: 0 -1.5%;
        border-radius: var(--borderRadius-lg, 32px);
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        background-color: transparent !important;
        transform-origin: center center !important;
    }

    .hero-animated-slides-main-wrapper .hero-layer-top,
    .hero-animated-slides-main-wrapper .hero-layer-fade,
    .hero-animated-slides-main-wrapper .hero-layer-gradient {
        display: none !important;
    }

    .hero-animated-slides-main-wrapper .hero-layer-bottom .hero-img-bg {
        left: 0;
        width: 100%;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.00) 43.27%),
            var(--bg-tablet) 50% / cover no-repeat #000 !important;
    }

    .hero-animated-slides-main-wrapper .has-content-container {
        align-items: flex-start;
        padding-top: 150px;
        justify-content: center;
    }

    .hero-animated-slides-main-wrapper .hero-animated-content {
        margin-left: 0;
        align-items: center;
        text-align: center;
        max-width: 307px;
        padding: 0 10px;
    }

    .hero-animated-slides-main-wrapper .hero-animated-title {
        font-size: 32px;
        line-height: 40px;
    }

    .hero-animated-slides-main-wrapper .hero-animated-subtitle {
        font-size: 14px;
        line-height: 20px;
    }

    .hero-animated-slides-main-wrapper .hero-controls-wrapper {
        bottom: 32px;
        right: 50%;
        transform: translateX(50%);
    }

    .hero-animated-slides-main-wrapper .hero-navigation {
        display: none !important;
    }

    .hero-animated-slides-main-wrapper .hero-animated-cta-icon-wrapper {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-animated-slides-main-wrapper {
        height: 720px;
    }

    .hero-animated-slides-main-wrapper .hero-animated-qr {
        display: none !important;
    }

    .hero-animated-slides-main-wrapper .hero-layer-bottom .hero-img-bg {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 30.23%, rgba(0, 0, 0, 0.00) 66.8%),
            var(--bg-tablet) center / cover no-repeat #000 !important;
    }

    .hero-animated-slides-main-wrapper .hero-animated-app-downloads {
        display: flex;
        flex-direction: row;
        gap: 16px;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: -24px;
    }

    .hero-animated-slides-main-wrapper .hero-animated-app-downloads img {
        width: 120px;
        height: auto;
    }
}