.video-section {
    position: relative;
    height: 50vh; /* 50% del alto de la pantalla */
    width: 100%; /* Ocupa todo el ancho */
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Escala el video al contenedor */
    z-index: 1;
}

.diagonal-cut {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: white;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 2;
}

.navbar-collapse {
    background-color: #ffffff;  /* o el color que prefieras */
    padding: 10px;  /* opcional, para dar algo de espaciado */
}


.text-overlay {
    position: absolute;
    top: 50%; /* Centrado verticalmente */
    left: 50%; /* Centrado horizontalmente */
    transform: translate(-50%, -50%); /* Ajusta el centro exacto */
    z-index: 2; /* Sobre el video */
    /*text-align: center;*/
    color: white; /* Texto blanco */
    /*background-color: rgba(0, 0, 0, 0.5); !* Fondo negro semitransparente *!*/
    padding: 20px;
    border-radius: 10px; /* Bordes redondeados */
}



.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Negro con opacidad */
    z-index: 2;
}

.custom-list {
    list-style: none; /* Eliminamos los marcadores por defecto */
    padding: 0;
    margin: 0;
}

.custom-list li {
    display: flex; /* Para alinear el ícono y el texto */
    align-items: center;
    margin-bottom: 10px; /* Espaciado entre elementos */
    font-size: 1.2rem;
}

.custom-list li .icon {
    color: white; /* Color del ícono (verde) */
    margin-right: 10px; /* Espacio entre el ícono y el texto */

}

.custom-list li:last-child {
    color: yellow;
}

.custom-list li:last-child .icon {
    color: yellow;
}


.timeline-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.timeline-steps .timeline-step {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 1rem 5rem;
}

@media (min-width: 768px) {
    .timeline-steps .timeline-step:not(:last-child):after {
        content: "";
        display: block;
        border-top: .25rem dotted #3b82f6;
        width: 10.46rem;
        position: absolute;
        left: 7.5rem;
        top: .3125rem
    }

    .timeline-steps .timeline-step:not(:first-child):before {
        content: "";
        display: block;
        border-top: .25rem dotted #3b82f6;
        width: 5.8125rem;
        position: absolute;
        right: 7.5rem;
        top: .3125rem
    }


}

.timeline-steps .timeline-content {
    width: 10rem;
    text-align: center;
    vertical-align: center;
}

.bqfaq div.titulofaq {
    font-size: 1.9em;
    text-transform: none;
    text-align: center;
    padding-bottom: 2em;
    padding-top: 1em;
    margin-bottom: .7em;
}

.bqfaq div.row.rowfaq {
    padding-bottom: 1.5em;
}

.bqfaq div.colfaq {
    padding-left: 25px;
    padding-right: 25px;
}

.bqfaq p.faqvideo {
    margin-bottom: .5em;
}

.bqfaq p {
    letter-spacing: .01em;
    margin-bottom: 1em;
    font-family: Raleway,sans-serif;
    font-weight: 500;
    line-height: 115%;
    font-size: 17px;
}

.bqfaq .img-vervideo {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}

.img100 {
    height: 170px;
    background-position: center;
}
.img100, .renovacion {
    background-size: contain;
    background-repeat: no-repeat;
}

.cookie-consent-popup {
    animation-name: show;
    animation-duration: 1s;
    animation-timing-function: ease;
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999999;
}

.cookie-consent-popup.open {
    display: block;
    opacity: 1;
    animation-name: show;
    animation-duration: 1s;
    animation-timing-function: ease;
    max-width: 400px;
    background: white;
    border-radius: 5%;
    box-shadow: 1px 1px 10px 0px #909090;
    margin-left: 20px;
    margin-bottom: 20px;
    padding: 10px;
}

.cookie-consent-controls {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.5s ease-out;
    -moz-transition: max-height 0.5s ease-out;
    transition: max-height 0.5s ease-out;
}

.cookie-consent-controls.open {
    margin: 0 0 30px 0;
    max-height: 600px;
}

.cookie-consent-details {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.5s ease-out;
    -moz-transition: max-height 0.5s ease-out;
    transition: max-height 0.5s ease-out;
}

.cookie-consent-details.open {
    max-height: 600px;
}

@keyframes show {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes hide {
    from {opacity: 1;}
    to {opacity: 0;}
}

