/* YPC v1.8 - Final Fixed Styles */

.ypc-master-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0 25px; /* Espacio lateral para las flechas */
    box-sizing: border-box;
}

.ypc-swiper {
    width: 100%;
    padding-bottom: 45px !important; /* Espacio para dots */
    overflow: hidden; /* Esencial para que el swiper no se rompa */
}

.ypc-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.ypc-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.ypc-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}
.ypc-video-wrapper:hover .ypc-thumb {
    opacity: 0.9;
    transform: scale(1.02);
}

/* --- TÍTULO SUPERPUESTO --- */
.ypc-title-overlay {
    position: absolute;
    top: 6%;
    left: 5%;
    width: 100%;
    padding: 12px 15px;
    box-sizing: border-box;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
    font-size: 1rem;
    font-family: "Montserrat", Sans-serif;
    line-height: 1.3;
    font-weight: 700;
    pointer-events: none; /* Deja pasar el click al video */
    z-index: 5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- PLAY BUTTON --- */
.ypc-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 68px; height: 48px;
    z-index: 10;
    pointer-events: none;
    transition: transform 0.2s;
}
.ypc-video-wrapper:hover .ypc-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}
.ypc-play-btn .ypc-play-bg {
    fill: #212121;
    transition: fill 0.2s;
}
.ypc-video-wrapper:hover .ypc-play-btn .ypc-play-bg {
    fill: #FF0000;
}

/* Loaded State */
.ypc-video-wrapper.loaded .ypc-thumb,
.ypc-video-wrapper.loaded .ypc-play-btn,
.ypc-video-wrapper.loaded .ypc-title-overlay { display: none; }
.ypc-video-wrapper iframe { position: absolute; top:0; left:0; width:100%; height:100%; border:0; }

/* --- FLECHAS --- */
.ypc-master-wrapper .swiper-button-next,
.ypc-master-wrapper .swiper-button-prev {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.9);
    color: #333;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    position: absolute;
    top: 40%;
    z-index: 50 !important;
    cursor: pointer;
}

.ypc-master-wrapper .swiper-button-next:after,
.ypc-master-wrapper .swiper-button-prev:after { font-size: 18px; font-weight: bold; }
.ypc-master-wrapper .swiper-button-next:hover,
.ypc-master-wrapper .swiper-button-prev:hover { background: #fff; color: #000; }

/* Posicionamiento exacto */
.ypc-master-wrapper .swiper-button-prev { left: 0px; }
.ypc-master-wrapper .swiper-button-next { right: 0px; }

/* --- DOTS --- */
.ypc-swiper .swiper-pagination-bullet {
    background: #000; opacity: 0.3; width: 10px; height: 10px;
}
.ypc-swiper .swiper-pagination-bullet-active {
    background: #FF0000; opacity: 1;
}

/* FORZAR TRANSICIÓN SUAVE */
.ypc-swiper .swiper-wrapper {
    transition-timing-function: ease-out !important;
    -webkit-transition-timing-function: ease-out !important;
}