.test-barras-opciones {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*height: 100%;*/
    width: 80%;
    padding-top: 4em;
}

.barra-opcion {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: var(--cColorTextos);
    background-color: var(--color-1);
    border-radius: 15px;
    height: 4em;
    font-size: 1.1em;
    width: 100%;
    padding: 2em;
    margin: 10px;
    transition: all .3s ease-in-out;
}

.barra-opcion:hover {
    transform: scale(1.02);
    color: #fff;
}

.barra-active {
    color: #fff;
    background-color: var(--color-3);
    transform: scale(1.02);
}

.test-barras-opciones-pequeños {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 350px;
    width: 40%;
}

.barra-opcion-pequeño {
    background-color: var(--color-1);
    border: none;
    width: 350px;
    border-radius: 20px;
    padding: 1em 2em;
    margin-bottom: 1.5em;
    color: var(--color-3);
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.barra-opcion-pequeño:hover {
    transform: scale(1.02);
    color: #fff;
    background-color: var(--color-3);
}

/* ========== Mediaquerys ========== */
@media (max-width: 1024px) {
    .barra-opcion {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .test-barras-opciones {
        padding-top: 2em;
    }

    .barra-opcion {
        font-size: .9em;
        height: 5em;
    }

    .test-barras-opciones-pequeños{
        width: 60%;
    }
}

@media (max-width: 375px) {
    .barra-opcion {
        font-size: .8em;
    }
}

@media (max-width: 375px) {
    .barra-opcion-pequeño {
        width: 300px;
    }
}