body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

h1 {

    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 27px;
    max-width: 780px;
    margin: 0;
}

p {
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    width: 100%;
    max-width: 634px;

}

.cinta-container {
    width: 100%;
    overflow: hidden;
}

.cinta-container img {
    width: 100%;
    height: auto;
    display: block;
}

.cinta-desktop {
    display: none !important;
}

.cinta-movil {
    display: block;
}

.logo {
    height: 79.562px;
    aspect-ratio: 192.00/79.56;
}

.contenido {

    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 33px;
    margin: 144px 0;
}

.texto {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.imagen-contenido {
    width: 100%;
    max-width: 442px;
    height: auto;
    aspect-ratio: 221/74;
    border-radius: 8px;
}


.info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 634px;
    gap: 7px;
    display: none;
}

h5 {

    text-align: center;
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.info span {
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}



@media screen and (min-width: 768px) {
    h1 {
        font-size: 35px;
        line-height: 45px;
        width: 100%;
    }

    p {
        padding: 0;
        font-size: 14px;
    }

    .cinta-desktop {
        display: block !important;
    }

    .cinta-movil {
        display: none !important;
    }

    .logo {
        height: 107.325px;
        aspect-ratio: 259.00/107.33;
    }

    .contenido {
        margin: 130px 0;
        padding: 0;
    }

    .imagen-contenido {
        width: 442px;
        height: 148px;
    }


    .info {

        gap: 0px;

    }

    h5 {
        font-size: 12px;
    }

    .info span {
        font-size: 17px;
    }


}