@charset "utf-8";
/* CSS Document */
.carousel-container {
    position: relative;
    width: 920px;
    margin: 0 auto;
    background: transparent;
    padding: 20px;
    border-radius: 10px;
}
.video-carousel {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
}
.video-item {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.video-item iframe {
    border-radius: 10px;
    border: 5px solid #fff;
}
.video-descripcion {
    margin-top: 10px;
    margin-bottom: 5px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-size: 22px;
    font-weight: 700px;
    line-height: 1.6;
    color: #333333;
}
/* Botones */
.nav-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: rgba(0, 51, 102, 0.8);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 30%;
    transition: background 0.3s ease;
}
.nav-btn:hover {
    background: rgba(0, 51, 102, 1);
}
.prev { left: 10px; }
.next { right: 10px; }
/* Paginación */
.pagination {
    text-align: center;
    margin-top: 5px;
}
.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 5px;
    background: rgba(0, 51, 102, 0.4);
    border-radius: 50%;
    cursor: pointer;
}
.dot.active { background: #003366; }