.video-vertical iframe {
    aspect-ratio: 9 / 16;
    /* formato vertical tipo reels */
    width: 100%;
    height: auto;
}

.video-horizontal iframe {
    /* aspect-ratio: 9 / 16; */
    /* formato vertical tipo reels */
    width: 100%;
    height: auto;
}

.uk-incluye {
    margin: 25px 0;
}

.flecha {
    background-color: #7946FF;
    /* Fondo blanco */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.2s;
}

.flecha svg {
    color: #fff;
    width: 16px;
    height: 16px;
}

.titulo-principal {
    margin: 30px 0 0 0;
    font-size: 32px;
    text-align: center;
}

.stats-section {
    background-color: #7B45FF;
    border-radius: 8px;
    padding: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 20px 10px;
    text-align: center;
    position: relative;
}

/* Números grandes */
.stat-number {
    margin: 0;
    font-weight: 700;
    font-size: 1.6rem;
    color: #fff;
}

/* Texto debajo */
.stat-text {
    margin: 0;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.3;
}

@media (max-width: 1500px) {
    .titulo-principal {
        margin: 20px 0 0 0;
        font-size: 24px;
    }
}


/* Divisor vertical entre columnas (solo en pantallas grandes) */
@media (min-width: 960px) {
    .stat-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 70%;
        width: 2px;
        background-color: #fff;
    }
}


@media (max-width: 768px) {
    .video-vertical iframe {
        aspect-ratio: 9 / 16;
    }

}

@media (max-width: 639px) {

    .uk-grid-column-small>*,
    .uk-grid-small>* {
        padding-left: 0;
    }

    *+.uk-grid-margin,
    .uk-grid+.uk-grid,
    .uk-grid>.uk-grid-margin {
        margin-top: 15px;
    }

    .stat-item {
        padding: 0;
    }

    .titulo-principal {
        margin: 15px 0 0 0;
        font-size: 18px;
    }
}