.opciones {
    display: flex;
    text-align: center;
    flex-direction: row;
}

.opciones h4 {
    font-size: 24px;
    margin-bottom: 0.5rem;
}

.opciones p {
    margin-bottom: 1rem;
    font-size: 15px;
}

.opciones .opcion-container img {
    width: 100%;
    height: 100%;
    min-width: 100px;
    display: block;
    object-fit: contain;
}

.opciones .opcion-container .img-container {
    width: 100px;
    height: 100px;
    margin-inline: auto;
    margin-bottom: 1rem;
}

@media(max-width: 768px) {
    .opciones .w33{
        width: 100% !important;
    }
    .opciones {
        flex-direction: column;
        width: 90%;
        margin-inline: auto;
    }
    .opciones .opcion-container {
        margin-bottom: 2rem;
    }
}