.containerBlur {
    position: relative;
    width: 100%;
    height: 95dvh;
    overflow: hidden;
}

.background {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 80%;
    height: 100%;
    background-color: #000; /* Color oscuro de fondo */
    transition: filter 0.3s ease;
    border-radius: 20px;
}

.object {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0); /* Ocultar el objeto por defecto */
    width: 100px;
    height: 100px;
    background-color: var(--verde); /* Color del objeto */
    border-radius: 50%;
    filter: blur(70px); /* Desenfoque */
}

.container:hover .object {
    transform: translate(calc(-50% + var(--moveX)), calc(-50% + var(--moveY))) scale(1); /* Mostrar el objeto y moverlo con hover */
}

.containerBlurMain{
    position: absolute;
    height: calc(100% - 40px); /* 20px de padding a cada lado */
    z-index: 1;
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-right: 10%;
    padding-left: 10%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.containerBlurImagen{
    width: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    min-width: 33.3333%;
}

.containerBlurImagen img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.containerBlurTexto{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0 20px;
    overflow: auto;
}

.containerBlurTexto h2{
    font-size: 2rem;
    color: var(--verde);
    margin-bottom: 10px;
}

.containerBlurTexto p{
    line-height: 1.5rem;
}

/*En movil poner en columna inversa*/
@media (max-width: 768px) {
    .containerBlur {
        height: 265dvh;
    }

    .background {
        width: 100%;
    }

    .containerBlurMain{
        flex-direction: column;
        width: calc(100% - 40px);
        padding-left: 20px;
        padding-right: 20px;
    }
    .containerBlurImagen{
        width: 100%;
        height: initial;
    }
    .containerBlurTexto{
        width: 100%;
        height: 100%;
    }
}