/* Estilos exclusivos para la sección videodcl */

.videodcl {
    padding: 120px 0 120px 0;

}

.v_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
}

.informacion {
    text-align: center;
    margin-bottom: 56px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 56px;
}

.cnt_info, .texto {
    flex: 1 1 0;
    min-width: 220px;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.texto p {

    border-radius: 8px;

    box-shadow: 0 2px 8px rgba(255,224,102,0.08);
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.texto {

    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
    height: 100%;
}



.informacion .section-title {
    font-size: 3rem;
    color: #1B3554;
    margin-bottom: 16px;

    border-radius: 8px;

    display: inline-block;
    font-weight: bold;
}

.titulovideo {

    border-radius: 8px;

    display: inline-block;
    font-size: 2.rem;
    font-weight: bold;
}

.informacion p {
    font-size: 1.2rem;
    color: #274472;
    margin-bottom: 24px;
}

.informacion .btn-primary {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    border: none;
    outline: none;
    border-radius: 50px;
    cursor: pointer;
    background-color: #1B3554;
    color: rgb(234, 234, 234);
    font-weight: 700;
    transition: 0.6s;
    box-shadow: 0px 0px 60px #327599;
    letter-spacing: 2px;
}
.informacion .btn-primary:active {
    scale: 0.92;
}

.informacion .btn-primary:hover {
    background: rgb(2,29,78);
    background: linear-gradient(270deg, rgba(2, 29, 78, 0.681) 0%, rgba(31, 215, 232, 0.873) 60%);
    color: rgb(4, 4, 38);
}

.video_container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    background: #eaf1fa;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(66,111,164,0.08);

    padding: 40px 0;
}

.cnt_info .section-title {
    text-align: left;
    display: block;
    font-weight: bold;
}

.cnt_info .btn-primary {
    align-self: flex-start;
}

.section-title {
    color: #fff;
    font-weight: bold;
}
.section-title .dcl-color {
    color: #28476B;
}

.dcl-blan {
    color: #fff;
}

@media (max-width: 768px) {
    .informacion .section-title {
        font-size: 2.5rem;
    }
    .texto p {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .informacion {
        flex-direction: column;
        gap: 16px;
    }
    .cnt_info, .texto {
        max-width: 100%;
        min-width: 0;
        min-height: unset;
        height: auto;
    }
    .informacion .section-title {
        font-size: 2.4rem;
    }
    .texto p {
        font-size: 1rem;
    }
    

} 