.banner-central-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.banner-texto {
    flex: 1;
    padding: 40px;
    min-width: 300px;
    z-index: 2;
    background-color: rgba(249, 249, 249, 0.95);
}

.banner-texto h2 {
    margin-top: 0;
    color: #333;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.banner-descripcion {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.banner-boton {
    display: inline-block;
    padding: 12px 25px;
    background-color: #0085ba;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.banner-boton:hover {
    background-color: #006799;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.banner-video {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
}

.banner-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .banner-central-container {
        flex-direction: column;
    }
    
    .banner-texto {
        padding: 30px 20px;
        width: 100%;
        order: 2;
    }
    
    .banner-video {
        width: 100%;
        order: 1;
        height: 250px;
    }
}