/* LOGO */
.logo-img {
    width: 55px;
}

/* Textos Explicativos */
.test-textos-explicativos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color-3);
}

.estosSonLosProductos-h3 {
    margin: 0 1em;
    display: flex;
    align-items: center;
    gap: .8em;
    transform: translate(18%, 0px);
    width: 100%;
}

.test-parrafo1 {
    margin-bottom: 15px;
    margin-top: 15px;
}

.test-parrafo2 {
    font-size: 1em;
}

.text-estosSonLosProductos {
    font-size: .75em;
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    color: white;
}

/* Nombre de usuario */
.nombre-de-usuario {
    text-transform: capitalize;
    font-size: 1em;
    text-align: center;
    margin: 0 1em;
}

/* ========== Mediaquerys ========== */
@media (max-width: 1024px) {
    .test-parrafo1 {
        margin-top: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .estosSonLosProductos-h3 {
        margin: 0 1em;
        display: flex;
        align-items: center;
        gap: .8em;
        transform: translate(0, 0);
        width: 100%;
    }

    .test-parrafo1 {
        margin-bottom: 10px;
        margin-top: 10px;
        font-size: 1em;
    }

    .test-parrafo2 {
        font-size: .8em;
    }
}

@media (max-width: 425px) {
    .text-estosSonLosProductos {
        font-size: .65em;
    }
}