    .carousel-container {
        width: 100%;
        height: 40px;
        overflow: hidden;
        position: relative;
    }

    .carousel {
        display: flex;
        height: 40px;
        transition: transform 0.8s ease-in-out;
    }

    .carousel div {
        width: 100vw;
        /* Cada slide ocupa toda la pantalla */
        /*height: 100vh;*/
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #F0EFEB;
    }

    .tituloMensajeHome {
        font-size: 16px;
        font-family: 'futuhv';
        font-weight: 500;
        line-height: 18;
        color: #1D1D1F;
    }

    .subtituloMensajeHome {
        font-size: 16px;
        font-family: 'futumd';
        font-weight: 400;
        line-height: 18;
        color: #1D1D1F;
        display: inline-block;
    }

    .tituloMensajeHome a {
        color: #1D1D1F;
    }

    .subtituloMensajeHome a {
        color: #1D1D1F;
    }

    .divisorMensajeHome {
        margin-left: 15px;
        margin-right: 15px;
    }

    .subtituloMensajeHome {
        font-size: 16;
        font-family: 'futumd';
        font-weight: 400;
        line-height: 18;
        color: #1D1D1F;
    }

    @media only screen and (max-width: 630px) {
        .subtituloMensajeHome {
            display: none;
        }
    }