/* Add here all your CSS customizations */

.ajuste {

    padding-right: 15px;
    padding-left: 15px;
}

.pajarito {
    max-width: 95%;
    background-color: #f0f0f0;
    padding: 10px;
}





.manuela-shorts-section {
    margin: 10px auto 35px auto;
}

.manuela-shorts-inner {
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

.manuela-shorts-title {
    margin: 0 0 28px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b51212;
}

.manuela-shorts-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: -5px;
    margin-right: -5px;
}

.manuela-short-col {
    width: 25%;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 30px;
    box-sizing: border-box;
}

.manuela-short-card {
    width: 100%;
}

.manuela-short-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background: #000;
    overflow: hidden;
    border-radius: 8px;
}

.manuela-short-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 991px) {
    .manuela-short-col {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .manuela-short-col {
        width: 100%;
    }

    .manuela-shorts-title {
        font-size: 24px;
        margin-bottom: 22px;
    }
}

.video-rounded {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.video-rounded iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* video principal */
.video-big {
    aspect-ratio: 16 / 9;
}

/* videos chicos */
.video-small {
    aspect-ratio: 16 / 9;
}


.video-rounded {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.video-rounded iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-big {
    aspect-ratio: 16 / 9;
}

.video-small {
    aspect-ratio: 16 / 9;
}

@media (max-width: 991px) {
    .espacio-movil {
        margin-top: 35px;
    }
}

.sidebar-right-inner {
    width: 100%;
}

.sidebar-box {
    width: 100%;
    margin-bottom: 35px;
}

.sidebar-thumb {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 0;
}

.sidebar-thumb img {
    display: block;
    width: 100%;
    height: auto;
}

.celu-facebook,
.celu-facebook .fb-page,
.celu-facebook span,
.celu-facebook iframe {
    width: 100% !important;
}

@media (max-width: 991px) {
    .sidebar-right-inner {
        max-width: 420px;
        margin: 0 auto;
    }
}

/* =============================================
   Lightbox: Zoom + Fade Animation
   ============================================= */

/* --- Apertura --- */
@keyframes mfpZoomIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- Cierre --- */
@keyframes mfpZoomOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.85);
    }
}

/* Figura animada al abrir */
.mfp-zoom-animation .mfp-with-anim {
    animation: mfpZoomIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

/* Figura animada al cerrar */
.mfp-zoom-animation.mfp-removing .mfp-with-anim {
    animation: mfpZoomOut 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

/* Overlay: Magnific lo maneja via JS (jQuery animate en custom.js)
   pero forzamos que no tenga transición propia para evitar conflictos */
.mfp-zoom-animation .mfp-bg {
    transition: none !important;
}