/* Swiper slider - imágenes centradas y completas */
.swiper-container {
    width: 100%;
    height: 500px; /* ajustá la altura según prefieras */
}

.swiper-slide {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}
/*-- Use For Custom Styling --*/

.navbar .logo {
    display: flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    flex-wrap: nowrap !important;
}

.navbar .logo img {
    flex-shrink: 0;
}

/* Video modal */
.video-link {
    display: block;
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}
.video-link:hover {
    color: #333;
    text-decoration: underline;
}

.video-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.video-modal-overlay.active {
    display: flex;
}

.video-modal-container {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.video-modal-close {
    position: absolute;
    top: -36px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}
.video-modal-close:hover {
    opacity: 0.7;
}

.video-modal-iframe-wrapper {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}
.video-modal-iframe-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
