.wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
}

.menu-opcion {
    flex: 1 1 45%;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 45%;
}

.menu-opcion img {
    max-width: 100%;
    height: 13rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.menu-opcion h5 {
    margin-top: 1rem;
    font-weight: bold;
    color: #00445c;
}

.menu-opcion input[type="radio"] {
    margin-top: 1rem;
    transform: scale(1.3);
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .menu-opcion {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
