.bg-blur-contenedor {
    position: absolute;
    width: 100%;
    height: 95%;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

@media (min-width: 768px) {
    .bg-blur-contenedor {
        width: 100%;
    }

}

.position-modal {
    position: absolute;
    top: -2%;
    padding: 0px 10px;
}

@media (min-width: 768px) {
    .position-modal {
        padding: 0px;
        top: -0.2%;
        right: 10%;
    }

}

.contenedor-asistente .imagen {
    display: block;
    margin-bottom: 5px;
}


.contenedor-asistente .contenido {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 5px;
    text-align: center;
}

.contenedor-asistente .header {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
}


.animaciom-border {
    animation: borderBlur 1s infinite alternate;
}

@keyframes borderBlur {
    0% {
        box-shadow: 0 0 5px 0 rgba(0, 51, 153, 0.1);
    }

    100% {
        box-shadow: 0 0 8px 3px rgba(0, 51, 153, 0.5);
    }
}



.contenedor-asistente .titulo {
    font-size: 1rem;
    font-weight: 600;
}

@media (min-width: 769px) {
    .contenedor-asistente .titulo {
        font-size: 1.4rem;
    }
}

.contenedor-asistente .parrafo {
    font-size: 0.85rem;
    font-weight: 400;
}

@media (min-width: 769px) {
    .contenedor-asistente .parrafo {
        font-size: 1rem;
    }

}

.contenedor-asistente .bold {
    font-weight: 600;
}


.bg-blur-contenedor-buqueda {
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    backdrop-filter: blur(4px);
}