/* Feature Highlights Section 2026 */
.highlights-section-2026 {
    max-width: 100%;
    margin: 60px auto 150px auto;
    background: transparent;
    padding: 0;
    position: relative;
    z-index: 10;
}

.highlights-slider-wrapper {
    position: relative;
    max-width: 45%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlights-viewport {
    width: 100%;
    overflow: hidden;
}

.highlights-track {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    width: 100%;
}

.highlight-item-2026 {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.highlight-icon-2026 {
    width: 100px;
    height: 103px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon-2026 svg {
    width: 100%;
    height: 100%;
}

.highlight-icon-2026 img {
    width: 100px;
    height: 103px;
}

.highlight-text-2026 {
    font-size: 16px;
    font-weight: 700;
    color: #007BFF;
    line-height: 1.2;
    max-width: 100%;
}

/* Slider Controls */
.highlights-nav {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #FFFFFF;
    border: 1px solid #EBF8FF;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 170, 248, 0.2);
    transition: background 0.3s ease;
    padding: 0;
}

.highlights-nav svg {
    width: 20px;
    height: 20px;
}

.highlights-nav:hover {
    background: #EBF8FF;
}

.highlights-nav.prev {
    left: 0;
}

.highlights-nav.next {
    right: 0;
}

.highlights-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.dot-highlight {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #C4E8FD;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s;
}

.dot-highlight.active {
    background-color: #00AAF8;
    transform: scale(1.3);
}

/* Responsividad */
@media (max-width: 1400px) {
    .highlights-slider-wrapper {
        max-width: 70%;
    }
}

@media (max-width: 992px) {
    .highlights-slider-wrapper {
        max-width: 600px;
        padding: 0 50px;
    }

    .highlights-track {
        justify-content: flex-start;
        flex-wrap: nowrap;
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .highlights-section-2026 {
        margin: 60px auto 10px auto;
    }

    .highlight-item-2026 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .highlights-nav,
    .highlights-dots {
        display: flex;
    }
}

@media (max-width: 650px) {
    .highlights-slider-wrapper {
        max-width: 400px;
        padding: 0 40px;
    }

    .highlight-item-2026 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}